From 254312a988eb02026f41b4aed8fd28885d3769de Mon Sep 17 00:00:00 2001 From: Michael Droogleever Fortuyn Date: Sat, 30 Nov 2019 20:48:44 +0100 Subject: [PATCH] Fix gdb command --- src/getting-started/02.00.FLASH.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getting-started/02.00.FLASH.md b/src/getting-started/02.00.FLASH.md index d07fd90..c927e19 100644 --- a/src/getting-started/02.00.FLASH.md +++ b/src/getting-started/02.00.FLASH.md @@ -71,7 +71,7 @@ available. I mentioned that OpenOCD provides a GDB server so let's connect to that right now: ``` console -$ arm-none-eabi-gdb -q target/thumbv6m-none-eabi/debug/rustled +$ arm-none-eabi-gdb -q target/thumbv6m-none-eabi/debug/microrust-start Reading symbols from target/thumbv6m-none-eabi/debug/rustled...done. (gdb) ``` @@ -162,4 +162,4 @@ break rustled::main continue ``` -Now we can learn how to debug code on the micro:bit. \ No newline at end of file +Now we can learn how to debug code on the micro:bit.