📄 timer.h
字号:
/*
* File: timer.h
* Purpose: routines for accessing integrated timer modules
*
* Notes:
*
*
* Modifications:
*
*/
#ifndef _TIMER_H
#define _TIMER_H
/********************************************************************/
typedef struct
{
uint16 then; /* previous TCN value */
uint16 now; /* most recent TCN value */
uint32 timeouts; /* count of timer reference reaches */
uint32 reference; /* number of timeouts desired */
} mpc5xx_timer;
/********************************************************************/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -