diff --git a/DEBUG_ON_ZEDBOARD.md b/DEBUG_ON_ZEDBOARD.md index d628f1e..ed77075 100644 --- a/DEBUG_ON_ZEDBOARD.md +++ b/DEBUG_ON_ZEDBOARD.md @@ -22,7 +22,7 @@ openocd -f board/digilent_zedboard.cfg -c "init" -c "pld load 0 system.bit" 3. To use JTAG Boot for the OBSW, you first need to run the FSBL once. -On build PC (adapt IP if different from debugging PC) in the folder where you build the FSBL as above: +On build PC (adapt IP if different from debugging PC) in the folder where you build the FSBL / in the fsbl-compiled repository/submodule folder: ```sh arm-none-eabi-gdb fsbl.elf >target extended-remote localhost:3333 @@ -51,4 +51,6 @@ Again, `Command Line Interface (CLI) commands` can be moved to the GNU Debugger arm-none-eabi-gdb romeo-obsw -iex "target extended-remote localhost:3333" -ex "set pagination off" -ex "load" -ex "break done" -ex "cont" -ex="set confirm off" -ex "exit" ``` +_Consider removing the `-ex "cont"` to start the software manually when you have et up your serial monitor. + UART USB port should output something at `115200baud`, (I use moserial to monitor).