Posted on June 14, 2017 at 16:08
I am using the STM32F103 microcontroller.
I am using the IAR workbench and using cubeMX to make the boot loader.
My problem is that after the jump from the boot loader to the application, all the interrupts i...
Posted on June 16, 2017 at 03:10
Thank you very much.
The issue was solved with Clive one and Jeroen3's precious opinion.
I adjusted the vector table in the application area.
int main(void)
{
/* USER CODE BEGIN 1 */
SCB->VTOR = 0x080050...
Posted on June 15, 2017 at 08:57Thank you for your valuable feedback.I still have questions.Does the boot loader need to adjust the address of the vector table? Or should it be done in an application?I would like to have an example that works normal...