Hi
Usually Primary bootloader is written into the memory which includes the interrupt vector table area. So if you don't relocate the vector table, it will be with the bootloader & application cannot use it. For the micro controllers, which don't support the relocation of interrupts, we need to write a jump table to the application address.
ang wrote:Hi
Usually Primary bootloader is written into the memory which includes the interrupt vector table area. So if you don't relocate the vector table, it will be with the bootloader & application cannot use it. For the micro controllers, which don't support the relocation of interrupts, we need to write a jump table to the application address.
So Application can use all the interrupts, if you relocate the interrupt vector table to the application area. In XS128, relocation is possible by using IVBR registerRegardsAng