precision-converters-firmware
ad4130_regs.h
Go to the documentation of this file.
1 /***************************************************************************/
12 #ifndef _AD4130_REGS_H_
13 #define _AD4130_REGS_H_
14 
15 /******************************************************************************/
16 /***************************** Include Files **********************************/
17 /******************************************************************************/
18 
19 #include <stdint.h>
20 
21 /******************************************************************************/
22 /********************** Macros and Constants Definition ***********************/
23 /******************************************************************************/
24 
25 #define AD413X_ADDR(x) ((x) & 0xFF)
26 
27 /* Max register address available (last register address defined
28  * in the ad413x.h file) */
29 #define MAX_REGISTER_ADDRESS (AD413X_ADDR(AD413X_REG_FIFO_DATA))
30 
31 /******************************************************************************/
32 /************************ Public Declarations *********************************/
33 /******************************************************************************/
34 
35 extern const uint32_t ad413x_regs[];
36 
37 #endif /* _AD4130_REGS_H_ */
const uint32_t ad413x_regs[]
Definition: ad4130_regs.c:30