我正在尝试用我的替换一些CS3中断处理程序。 在“ISRs for stellaris_blizzard”文件的部分下面
#if defined (L_stellaris_blizzard_isr_interrupt)
.globl __cs3_isr_interrupt
.type __cs3_isr_interrupt, %function
__cs3_isr_interrupt:
b .
.size __cs3_isr_interrupt, . - __cs3_isr_interrupt
.weak __cs3_isr_reserved_7
.globl __cs3_isr_reserved_7
.set __cs3_isr_reserved_7, __cs3_isr_interrupt
...
.weak __cs3_isr_GPIOM
.globl __cs3_isr_GPIOM
.set __cs3_isr_GPIOM, __cs3_isr_interrupt
...
#endif /* interrupt */
...
#if defined (L_stellaris_blizzard_isr_systick)
.globl __cs3_isr_systick
.type __cs3_isr_systick, %function
__cs3_isr_systick:
b .
.size __cs3_isr_systick, . - __cs3_isr_systick
#endif /* systick */
我的处理程序
extern "C" void __cs3_isr_systick() { ... }
extern "C" void __cs3_isr_GPIOM() { ... }
SysTick中断效果很好。但是当端口M上发生GPIO中断时,默认调用“__cs3_isr_interrupt”。 如何更换GPIO中断处理程序?
答案 0 :(得分:0)
看起来像__cs3_isr_GPIOM是__cs3_isr_interrupt的弱别名。如果您已将自己的版本定义为非弱版,则应该没有问题。
您应该检查目标文件是否具有您期望的正确弱/非弱类型(使用nm
)。
如果这没有解决它,那么你有一个链接器问题,那些更难以弄明白。这可能是一个订购问题,或者只是某个地方的错字。