Hi, Katie Now I am able to jump on the defined address as i am giving now ((void (*)()) _App_Reset_Vector)();, which i have mapped in the linker file of the application. But now my actual application in building a test file as it saying - USCI_A0_ISR USCI_A1_ISR TIMER0_A0_ISR Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [TI_MSPBoot_Mgr_Vectors.obj] Error 1 gmake: Target `all' not remade because of errors. Build Finished Also if i open the declaration of the inline branch instruction of these ISR it is going there. Why it is still saying it is undefined. __asm (" .sect .APP_PROXY_VECTORS"); __asm (" .retain .APP_PROXY_VECTORS"); __asm (" .global ProxyVectorTable"); __asm ("ProxyVectorTable:"); __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(0) USCI B2 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(1) USCI A2 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(2) Port 4 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(3) Port 3 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(4) Timer2_A5 CC1-4, TA */ __asm (" BRA #USCI_A1_ISR;"); /* APP_PROXY_VECTOR(5) Usci_A1 __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(6) DAC12 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(7) RTC */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(8) Port 2 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(9) USCI B1 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(10) USCI A1 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(11) Port 1 */ __asm (" BRA #TIMER0_A0_ISR;"); /* APP_PROXY_VECTOR(12) Timer0_A0 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(13) USCI A0 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(14) DMA */ __asm (" BRA #USCI_A0_ISR;"); /* APP_PROXY_VECTOR(15) UartA0 event */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(16) Timer0_A5 CC1-4, TA */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(17) Timer0_A5 CC0 */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(18) ADC */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(19) USCI B0 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(20) USCI A0 Receive/Transmit */ __asm (" BRA #Dummy_Isr;"); /* APP_PROXY_VECTOR(21) Watchdog Timer */ I have found these instructions on the internet and i have updated them as per my MCU MSP430F5247 . They are defined in my code where i have blocked their Pragma_vectors as to decline their multiple declaration. Please help me out. Thank you...
↧