diff --git a/src/getting-started/02.00.FLASH.md b/src/getting-started/02.00.FLASH.md index 8e575c9..df4d010 100644 --- a/src/getting-started/02.00.FLASH.md +++ b/src/getting-started/02.00.FLASH.md @@ -2,7 +2,7 @@ Flashing is the process of moving our program into the microcontroller's (persistent) memory. Once flashed, the microcontroller will execute the flashed program every time it is powered on. -In this case, our `rustled` program will be the only program in the microcontroller memory. By this I mean that there's nothing else running on the microcontroller: no OS, no daemon, nothing. `rustled` has full control over the device. This is what is meant by *bare-metal* programming. +In this case, our `microrust-start` program will be the only program in the microcontroller memory. By this I mean that there's nothing else running on the microcontroller: no OS, no daemon, nothing. `microrust-start` has full control over the device. This is what is meant by *bare-metal* programming.
OS
@@ -72,7 +72,7 @@ I mentioned that OpenOCD provides a GDB server so let's connect to that right no ``` console $ arm-none-eabi-gdb -q target/thumbv6m-none-eabi/debug/microrust-start -Reading symbols from target/thumbv6m-none-eabi/debug/rustled...done. +Reading symbols from target/thumbv6m-none-eabi/debug/microrust-start...done. (gdb) ```