25 lines
540 B
C
25 lines
540 B
C
#ifndef __INTERRUPT_APP_H
|
|
#define __INTERRUPT_APP_H
|
|
|
|
#define TIME_5MS_50MS 10
|
|
#define TIME_5MS_500MS 100
|
|
#define TIME_5MS_1S 200
|
|
#define TIME_50mS_50mS 1
|
|
#define TIME_50mS_100mS 2
|
|
#define TIME_50mS_200mS 4
|
|
#define TIME_50MS_500MS 10
|
|
#define TIME_50MS_2250MS 45
|
|
#define TIME_1S_5S 5
|
|
|
|
extern BOOL bTimer5msFlg;
|
|
extern BOOL bTimer50msFlg;
|
|
extern BOOL bTimer1sFlg;
|
|
extern U8 ucTimer50ms;
|
|
extern U8 ucTimer1s;
|
|
|
|
|
|
extern void InterruptINT4App(U8 IntSource);
|
|
extern void InterruptTimer3App(void);
|
|
|
|
|
|
#endif |