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

📄 bsp_time.h

📁 IAR 平台ATMEL 的例程, 和说明
💻 H
字号:
/****************************************************************************
FILE        BSP_TIME.H - (hardware dependent)

VERSION     1.00

AUTHORS     Patrice Vilchez (Europe Technologies) 
            Frederic SAMSON (Europe Technologies)

COPYRIGHT   (c) Europe Technologies
            COMMERCIAL IN CONFIDENCE

CONTAINS    Structure and Enum Definitions and Standard Typedef 
            for Time Package of EasyCan3 

 MODIFICATION HISTORY

 * 1  29/06/2000  Patrice Vilchez
        - Initial File 
 * 2  19/07/2001  Frederic SAMSON
        - Bios_time.h of VECU2002 modified for  EasyCan3 bsp layer
****************************************************************************/

#ifndef BSP_TIME_H
#define BSP_TIME_H

/************************************/
/* BSP Time Structure Definiton    */
/************************************/
typedef struct 
{
  U64_T  counts;
  U32_T  msecs;
  U32_T  seconds;
  int    TimeInvalid:1;
  int    Reserved:31;
} BSP_TIME_T, *BSP_TIME_PTR;

/****************************************************************************
* BSP Object Declaration
****************************************************************************/
extern BSP_TIME_T  BSP_Time_s;

/****************************************************************************
* BSP TIME External Functions Declaration
****************************************************************************/
extern void BSP_TimeInit(void);
extern void BSP_TimeGet(BSP_TIME_PTR bsp_time_p_s);
extern void BSP_TimeSet(U32_T time_u32);


#endif  /* BSP_TIME_H */

⌨️ 快捷键说明

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