ixp425timer.h
来自「ixp425 bsp for vxworks」· C头文件 代码 · 共 50 行
H
50 行
/* ixp425Timer.h - ixp425 processor timer library *//* Copyright 2002 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01c,09jul03,m_h multiple callouts from auxClk01b,27feb03,jb3 add C++ protection01a,05jun02,jb initial version...*/#ifndef INCixp425Timerh#define INCixp425Timerh#ifdef __cplusplusextern "C" {#endif#define SYS_CLK_RATE_MIN (10) /* Minimum rate at which the system clock can run */#define SYS_CLK_RATE_MAX (1000) /* 1000 ticks, Maximum rate at which the system clock can run */ /* Do not actually have an auxiliary clock */#define AUX_CLK_RATE_MIN (10) /* Minimum rate at which the auxiliary clock can run */#define AUX_CLK_RATE_MAX (1000) /* 1000 ticks, Maximum rate at which the auxiliary clock can run *//* auxClk functionality used within this BSP */STATUS ixpAuxClkConnect (FUNCPTR routine, int arg);void ixpAuxClkDisconnect (void);void ixpAuxClkDisable (void);void ixpAuxClkEnable (void);int ixpAuxClkRateGet (void);STATUS ixpAuxClkRateSet (int ticksPerSecond);/* Assembly specific defs */#ifndef _ASMLANGUAGE#endif#ifdef __cplusplus}#endif#endif /* INCixp425Timer.h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?