PyCortexMDebug icon indicating copy to clipboard operation
PyCortexMDebug copied to clipboard

A set of GDB/Python-based utilities to make life debugging ARM Cortex M processors a bit easier

Results 13 PyCortexMDebug issues
Sort by recently updated
recently updated
newest added

https://github.com/bnahill/PyCortexMDebug/blob/f5465960711b88b712e85ee14f9f24ca7f76f6e0/cmdebug/svd_gdb.py#L273 In the above line there is an error causing gdb to print this error: ``` Python Exception SVDRegisterCluster instance has no attribute 'parent': Error occurred in Python: SVDRegisterCluster instance...

If I don't have pysvd.py in the current working directory, I get errors when trying to use gdb_svd. I've solved this problem in two ways: 1. set `PYTHONPATH` in gdb's...

Tab completion is already case insensitive, but if I type the whole peripheral or register name, it doesn't work. I hacked in something by using 'upper()', but it wasn't very...