Reputation: 1565
I know there a lot of tools out there for embedded system debugging or tracing. But I have a more specific use case:
Hope you have some ideas for sw tools
thank you very much!
Upvotes: 1
Views: 380
Reputation: 1362
Typically when I start building an embedded system I use the UART as a "system console" to output diagnostic data using printf. You can also add a menu interface that responds to specific commands.
If the embedded system you are creating has a serial interface in the requirements you could use it. If not, simple TTL to USB converters are available.
Upvotes: 3