cancel
Showing results for 
Search instead for 
Did you mean: 

Interrupt vector relocation in stm8

leojo
Associate

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​

1 REPLY 1
Philipp Krause
Senior II

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).