2021-05-08 09:56 PM
I would like to look at the register to see which values are stored inside that register. Then I would like to use that number to do operations.
2021-05-09 07:43 AM
All the registers are accessible by the processor, read them, print them out, whatever.
Check them with the debugger
2021-05-10 10:40 AM
This is a very generic question. Registers are defined in the header files. You access them just like you would access a variable. For example, you can read a timer's counter register by accessing TIM1->CNT.
2021-05-10 10:42 AM
2021-05-10 10:53 AM