precision-converters-firmware
ad4170_regs.h
Go to the documentation of this file.
1 /***************************************************************************/
12 #ifndef _AD4170_REGS_H_
13 #define _AD4170_REGS_H_
14 
15 /******************************************************************************/
16 /***************************** Include Files **********************************/
17 /******************************************************************************/
18 
19 #include <stdint.h>
20 
21 /******************************************************************************/
22 /********************** Macros and Constants Definition ***********************/
23 /******************************************************************************/
24 
25 /******************************************************************************/
26 /************************ Public Declarations *********************************/
27 /******************************************************************************/
28 
29 /* Get the AD4170 registers count (actual single + multi-byte entity registers
30  * available and defined in ad4170.h file) */
31 #define ADC_REGISTER_COUNT (147)
32 
33 /* Max register address available (last register address defined in ad4170.h file) */
34 #define MAX_REGISTER_ADDRESS (AD4170_REG_INPUT_DATA)
35 
36 extern const uint32_t ad4170_regs[];
37 
38 #endif /* _AD4170_REGS_H_ */
const uint32_t ad4170_regs[]
Definition: ad4170_regs.c:31