I am using STM32F107 cortex m3 controller. I am using uvision IDE for the project. I have an application which is running properly at starting location i.e 0x0800 0000. If I change starting location to 0x0800 4000 the application is not working properly. I made changes to the vector table location using this function as NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x8004000) i.e changed SCB->VTOR = 0x8004000 to this location. But even after doing this interrupt is not happening. Should I do anything more to make this project work?
Regards Suraj