Skip to main content
arnold_w
Senior II
September 19, 2018
Solved

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

  • September 19, 2018
  • 3 replies
  • 759 views

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?

This topic has been closed for replies.

3 replies

Danish1
Lead III
September 19, 2018

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
arnold_wAuthor
Senior II
September 19, 2018

Thank you