📄 timer.h
字号:
/*******************************************************************************
*
* ARM Strategic Support Group
*
*******************************************************************************/
/*******************************************************************************
*
* Module : timer.c
* Description : Header File
* Tool Chain : ARM Developer Suite v1.0
* Platform : Evaluator7T
* History :
*
* 990416 ASloss
* - added timer interrupt service
* - added header information
*
* 2000-03-25 Andrew N. Sloss
* - ported to Evaluator7T
*
* Notes : Refer to the Samsung KS32S50100 documentation
*
*******************************************************************************/
/*******************************************************************************
* IMPORT
*******************************************************************************/
// none...
/*******************************************************************************
* MACRO'S
*******************************************************************************/
// none...
/*****************************************************************************
* GLOBALS
*****************************************************************************/
// none...
/*****************************************************************************
* ROUTINES
*****************************************************************************/
/* -- timer_init ----------------------------------------------------------
*
* Description : Initialises the counter timer0
*
* Parameters : none...
* Return : none...
* Notes : none...
*
*/
void timer_init (void);
/* -- timer_irq ------------------------------------------------------------
*
* Description : handles the timer interrupt.
*
* Parameters : none...
* Return : none...
* Notes : none...
*
*/
void timer_irq (void);
/* -- timer_start -----------------------------------------------------------
*
* Description : starts the timer
*
* Parameters : none...
* Return : none...
* Notes : none...
*
*/
void timer_start (void);
/*******************************************************************************
* END OF timer.h
*******************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -