Re: Debugging a specific application

2022-11-30 Thread Roberto Bucher
Danke Sebastien The application (microros) is configured and compiled by the nuttx generation. But if the routine is in the shell, how can I start it from the debugger? Thanks in advance Roberto On 11/30/22 22:17, Sebastien Lorquet wrote: Hi, If your OS is built in monolithic mode (no

Re: Debugging a specific application

2022-11-30 Thread Sebastien Lorquet
Hi, If your OS is built in monolithic mode (no protected mode) then applications are just routines, so you can put a breakpoint in any app routine and let it run until there. To replace nsh by your app, do make menuconfig, menu RTOS features, menu Tasks and scheduling, text config

Re: Debugging a specific application

2022-11-30 Thread Tim Hardisty
Not sure if it helps, but the built-in apps can be easily debugged, so could you perhaps include your application as a custom app, selected via the NuttX Kconfig so it gets built in, then start it from the nsh? A workaround maybe, but might help? On 30/11/2022, 05:40, "Roberto Bucher" wrote: