Finish removing rustled

This commit is contained in:
Michael Droogleever Fortuyn
2019-11-30 21:31:41 +01:00
parent 4d631b12aa
commit 1587daf5d1

View File

@@ -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.
<dl>
<dt>OS</dt>
@@ -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)
```