2019-11-13 12:06 PM
Hi,
I am developing an IAP for one of my project.
In that the bootloader and the application using interrupt vectors.How can I seperate the interrupt vectors for application as well as bootloader. How to relocate the interrupt vectors in STM8?
Thanks
Raja.D
2019-11-25 01:26 AM
The interrupt table is at a fixed address.
So you'll have to go from there, e.b. by placing indirect jumps in asm there (or just write stub interrupt handlers in C that contain an if to call the appropriate handler function).