clvdef.h

来自「本程序为ST公司开发的源代码」· C头文件 代码 · 共 55 行

H
55
字号
/************************************************** * * * CVS ID:   $Id: clvdef.h,v 1.3 2007/08/14 15:27:43 dellorto Exp $ * Author:   Maurizio Marcucci [MM] - STM * Date:     $Date: 2007/08/14 15:27:43 $ * Revision: $Revision: 1.3 $ *  * Description: *  *   Accordo+ Hardware registers definition * *************************************************** *  * COPYRIGHT (C) ST Microelectronics  2005 *            All Rights Reserved * ***************************************************//* CLV_CTRL register type definition */typedef struct{  UInt  s_res         : 1;  UInt  ovfl_mode     : 2;  UInt  it_unflo_en   : 1;  UInt  it_ovflo_en   : 1;  UInt  bit5          : 1;  UInt  bit6          : 1;  UInt  bit7          : 1;  UInt                : 24;} CLV_CTRL_STRUCT;typedef union{  uint32 all;  CLV_CTRL_STRUCT field;} CLV_CTRL_UNION;/* CLV_LEVEL_POINTER register type definition */typedef struct{  UInt  val         : 6;  UInt  underflow   : 1;  UInt  overflow    : 1;  UInt              : 24;} CLV_LEVEL_POINTER_STRUCT;typedef union{  uint32 all;  CLV_LEVEL_POINTER_STRUCT field;} CLV_LEVEL_POINTER_UNION;

⌨️ 快捷键说明

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