timer_isr.h

来自「ADI Blackfin BF51X 範例程式」· C头文件 代码 · 共 38 行

H
38
字号
/*******************************************************************************/
/*                                                                             */
/*   (C) Copyright 2008 - Analog Devices, Inc.  All rights reserved.           */
/*                                                                             */
/*    FILE:     timer_isr.h ( )					  				                   */
/*                                                                             */
/*    CHANGES:  1.00.0  - initial release    								   */
/*																			   */
/*******************************************************************************/

#ifndef _TIMER_ISR_H_
#define _TIMER_ISR_H_

#include <sys\exception.h>
#include <cdefBF518.h>
#include <ccblkfn.h>

/*******************************************************************
*  global variables and defines
*******************************************************************/
#define TIMEOUT_PERIOD	0x00002000


/*******************************************************************
*  function prototypes
*******************************************************************/
void Init_Timers(void);
void Init_Timer_Interrupts(void);
void Delay(const unsigned long ulMs);
unsigned int SetTimeout(const unsigned long ulTicks);
unsigned long ClearTimeout(const unsigned int nIndex);
bool IsTimedout(const unsigned int nIndex);

EX_INTERRUPT_HANDLER(Timer_ISR);

#endif /* _TIMER_ISR_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?