在使用PSOC的中断的时候,编译总是有警告信息,向各位请教下为什么会有警告 : 程序如下 //---------------------------------------------------------------------------- // C main line //----------------------------------------------------------------------------
#include <m8c.h> // part specific constants and macros #include "PSoCAPI.h" // PSoC API definitions for all User Modules
#pragma interrupt_handler PSoC_GPIO_ISR void PSoC_GPIO_ISR(void) { PRT0DR^=0X20; //翻转P0_5 }
void main() { INT_MSK0=0x20; //允许GPIO中断挂起 M8C_EnableGInt; while(1); }
警告信息: eee - 0 error(s) 1 warning(s) 18:50:13 (690) interrupt function requires address (warning)
|