Interrupt vector relocation in stm8
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
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
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-11-25 1: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).
