timer.h

来自「1. 8623L平台」· C头文件 代码 · 共 28 行

H
28
字号
/***************************************** Copyright (c) 2002-2007 Sigma Designs, Inc. All Rights Reserved Proprietary and Confidential *****************************************//* This file is part of the EM86XX boot loader */#ifndef __BOOTLOADER_TIMER_H#define __BOOTLOADER_TIMER_H#include "em86xxapi.h"#define delay(usec)     em86xx_usleep(usec)// // function ptototypes//void em86xx_setup_timer(void);unsigned int timer_getticks(void);int timer_timeout(unsigned int startticks, int timeout);#ifdef ENABLE_FIQ_TESTunsigned int timer_getticks1(void);#endif#endif

⌨️ 快捷键说明

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