cancel
Showing results for 
Search instead for 
Did you mean: 

Easiest way to obtain a list of all STM32F446 hardware registers?

arnold_w
Senior

What's the easiest way to obtain a list of all STM32F446 hardware registers? Extracting them from different H-files or from the reference guide in pdf-format seems like a lot of work. Is there a more efficient way?

1 ACCEPTED SOLUTION
3 REPLIES 3
Danish1
Lead II

What do you want to do with that list once you have it? Without knowing that, it is hard to be more helpful.

If you run your C preprocessor on source-code that #includes <stm32f446xx.h> or whatever, that will combine all the appropriate h files into one huge file.

How do you do that? It depends on your development environment. On my preferred Rowley Crossworks, I right-click on the c file and select "Open With:Show Preprocessor Output"

Hope this helps,

Danish

arnold_w
Senior

Thank you