📄 t_event.c
字号:
//////////////////////////////
// t_event.c //
//////////////////////////////
#include<reg52.h>
#include "stimer.h"
//插入自己需要的包含
//用户程序,在t_event.c文件中定义
//由用户添加其内容,在产生UserTimer终端时调用
extern void iccgetputonebit(void);
void TimerEvent( void )
{
iccgetputonebit();
}
//请注意函数执行的时间长度
/*
void SysTimerEvent( void ) //每毫秒调用一次 use the same register bank as systimer
{
//输入自己的内容
}*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -