timer.h
来自「bootloader源代码」· C头文件 代码 · 共 26 行
H
26 行
/***************************************** Copyright (c) 2001-2002 Sigma Designs, Inc. All Rights Reserved Proprietary and Confidential *****************************************//* This file is part of the boot loader *//* * timer.h * * timer for ARM */#ifndef __BOOTLOADER_TIMER_H#define __BOOTLOADER_TIMER_H#define TICKS_PER_SEC 1void timer_init(void);unsigned int timer_getticks(void);int timer_timeout(unsigned int startticks, int timeout);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?