README.md aktualisiert

gdb without pagination and with -ex flags added
This commit is contained in:
Paul Nehlich 2023-09-25 14:58:42 +02:00
parent bc28a3cd8d
commit 8cdb2e4052

View File

@ -54,4 +54,11 @@ arm-none-eabi-gdb freeRTOS
>cont
```
Short form, less interactive:
```
arm-none-eabi-gdb fsbl.elf -ex "target extended-remote localhost:3333" -ex "set pagination off" -ex "load" -ex "continue"
>^C^D^D
arm-none-eabi-gdb freeRTOS -ex "target extended-remote localhost:3333" -ex "set pagination off" -ex "load" -ex "continue"
```
Uart usb port should output something at 115200baud, (I use moserial to monitor).