那你这个函数不申明也会报错的啊,
申明:
#ifndef _TAU_
#define _TAU_
/******************************************************************************
Exported global variables and functions (to be accessed by other files)
******************************************************************************/
void TAU_Init(void);
__interrupt void TAU0_Channel1_Interrupt(void);
#endif
调用
void TAU0_Channel1_Interrupt(void)
{
g_Cnt100ms++;
if (g_Cnt100ms == 10)
{
g_Flag1s = 1;
g_Cnt100ms = 0;
P0.1=~P0.1;
}
if(g_Cnt100ms==20)
{
g_Cnt100ms = 0;
P0.0=~P0.0;
}
}