📄 clvdef.h
字号:
/************************************************** * * * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -