cancel
Showing results for 
Search instead for 
Did you mean: 

Raw data of NVIC table

Teyber
Associate

Hello,

I am currently learning low level embedded programming, which lead me to try to extract the data used to generate the table 51 of the document RM0394 Rev 5. I would use this data to generate C++ code. Is the raw data of this table is publicly available somewhere in a format machine-readable?

I already managed to extract the data from this PDF, but as this extracted text loses its references, I'm unable to tell what entry corresponds to what exact MCU series.

Thank you for your help!

2 REPLIES 2
Pavel A.
Super User

Could you tell why do you want it?

Users (especially beginners) typically do not need to do this. The interrupt vectors table is defined in the startup module, provided by ST. Users just compile this file into their C or C++ program and enjoy.

 

The startup.s files enumerate the table of system handlers and IRQ Handlers.

The related .H files for the different models will have the IRQn indices. 

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..