📄 anadef.h
字号:
/**************************************************
*
*
* CVS ID: $Id: anadef.h,v 1.1 2006/01/31 18:50:14 belardi Exp $
* Author: Maurizio Marcucci [MM] - STM
* Date: $Date: 2006/01/31 18:50:14 $
* Revision: $Revision: 1.1 $
*
* Description:
*
* Accordo+ Hardware registers definition
*
***************************************************
*
* COPYRIGHT (C) ST Microelectronics 2005
* All Rights Reserved
*
***************************************************/
/* ANA_TST_CTRL_E register type definition */
typedef struct
{
UInt ref_ena : 1;
UInt adc_ena : 1;
UInt vga_ena : 1;
UInt lsh_ena : 1;
UInt adc_testin : 1;
UInt vga_testout : 1;
UInt lsh_testout : 1;
UInt bit7 : 1;
UInt : 24;
} ANA_TST_CTRL_X_STRUCT;
typedef union
{
uint32 all;
ANA_TST_CTRL_X_STRUCT field;
} ANA_TST_CTRL_X_UNION;
/* ANA_TST_CTRL_TOP register type definition */
typedef struct
{
UInt ref_ena : 1;
UInt buf_ena : 1;
UInt adc_ena : 1;
UInt amp_ena : 1;
UInt abb_ena : 1;
UInt buf_bypass : 1;
UInt amp_testout : 1;
UInt ref_opu : 1;
UInt : 24;
} ANA_TST_CTRL_TOP_STRUCT;
typedef union
{
uint32 all;
ANA_TST_CTRL_TOP_STRUCT field;
} ANA_TST_CTRL_TOP_UNION;
/* ANA_LAS register type definition */
typedef struct
{
UInt las_dac : 4;
UInt bit4 : 1;
UInt bit5 : 1;
UInt las_cat_an : 1;
UInt las_ena : 1;
UInt : 24;
} ANA_LAS_DAC_STRUCT;
typedef union
{
uint32 all;
ANA_LAS_DAC_STRUCT field;
} ANA_LAS_DAC_UNION;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -