PSoc designer5.4如何进中断,在4.3 版本可以
程序不使用模块配置,完全用C配置,原程序是在4.3版本下编写的,编译运行完全正常,但现在移植到5.4版本上出了点小问题
主要问题出在程序进不了中断,我使用了USB 端点0与端点1中断,boot.ASM中也加入了中断服务函数名
org 20h ;USB Endpoint 0 Interrupt Vector
ljmp usb_endpoint_0_isr
reti
org 24h ;USB Endpoint 1 Interrupt Vector
ljmp usb_endpoint_1_isr
reti
现在问题就来了,我只要一编译boot.asm又会变会原来那样
org 20h ;USB Endpoint 0 Interrupt Vector
// call void_handler
reti
org 24h ;USB Endpoint 1 Interrupt Vector
// call void_handler
reti
这就导至程序无法进入中断。在4.3版本上不会出现这样的现象
|