Hi, I've been messing around with the GNU ARM Embedded Toolchain on Ubuntu 16.04. I'm able to build a bin from an example project, flash it to my TM4C development board using the command line LM4Flash utility and I'm even able to debug - stepping through the code using GDB/OpenOCD.
In GDB I can view the core registers by using the typical "i r" command. What I'd really love to be able to do though is to view various other registers - for example, the System Control RCC2 register (0x400F.E070) - similarly as fast (and similar output format) as I'm able to view the core registers.
It appears my only current option is to view the memory to see what the register contents are... Hoping there is a faster way to do this and wondering if anyone else out there is using GDB/OpenOCD and has a better method?