⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.h

📁 motorola 针对coldfire 5275 评估板的Dbug bootloader源程序
💻 H
字号:
/*
 * File:        timer.h
 * Purpose:     routines for accessing integrated timer modules
 *
 * Notes:       
 *
 *
 * Modifications:
 *
 */

#ifndef _TIMER_H
#define _TIMER_H

/********************************************************************/

typedef struct
{
    uint16  then;                   /* previous TCN value */
    uint16  now;                    /* most recent TCN value */
    uint32  timeouts;               /* count of timer reference reaches */
    uint32  reference;              /* number of timeouts desired */
} mpc5xx_timer;

/********************************************************************/

#endif

⌨️ 快捷键说明

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