no-OS
ad7779.h
Go to the documentation of this file.
1 /***************************************************************************/
33 #ifndef AD7779_H_
34 #define AD7779_H_
35 
36 /******************************************************************************/
37 /***************************** Include Files **********************************/
38 /******************************************************************************/
39 #include <stdint.h>
40 #include <stdbool.h>
41 #include "no_os_delay.h"
42 #include "no_os_gpio.h"
43 #include "no_os_spi.h"
44 
45 /******************************************************************************/
46 /********************** Macros and Constants Definitions **********************/
47 /******************************************************************************/
48 #define AD7779_REG_CH_CONFIG(ch) (0x00 + (ch)) // Channel Configuration
49 #define AD7779_REG_CH_DISABLE 0x08 // Disable clocks to ADC channel
50 #define AD7779_REG_CH_SYNC_OFFSET(ch) (0x09 + (ch)) // Channel SYNC Offset
51 #define AD7779_REG_GENERAL_USER_CONFIG_1 0x11 // General User Config 1
52 #define AD7779_REG_GENERAL_USER_CONFIG_2 0x12 // General User Config 2
53 #define AD7779_REG_GENERAL_USER_CONFIG_3 0x13 // General User Config 3
54 #define AD7779_REG_DOUT_FORMAT 0x14 // Data out format
55 #define AD7779_REG_ADC_MUX_CONFIG 0x15 // Main ADC meter and reference Mux control
56 #define AD7779_REG_GLOBAL_MUX_CONFIG 0x16 // Global diagnostics mux
57 #define AD7779_REG_GPIO_CONFIG 0x17 // GPIO config
58 #define AD7779_REG_GPIO_DATA 0x18 // GPIO Data
59 #define AD7779_REG_BUFFER_CONFIG_1 0x19 // Buffer Config 1
60 #define AD7779_REG_BUFFER_CONFIG_2 0x1A // Buffer Config 2
61 #define AD7779_REG_CH_OFFSET_UPPER_BYTE(ch) (0x1C + (ch) * 6) // Channel offset upper byte
62 #define AD7779_REG_CH_OFFSET_MID_BYTE(ch) (0x1D + (ch) * 6) // Channel offset middle byte
63 #define AD7779_REG_CH_OFFSET_LOWER_BYTE(ch) (0x1E + (ch) * 6) // Channel offset lower byte
64 #define AD7779_REG_CH_GAIN_UPPER_BYTE(ch) (0x1F + (ch) * 6) // Channel gain upper byte
65 #define AD7779_REG_CH_GAIN_MID_BYTE(ch) (0x20 + (ch) * 6) // Channel gain middle byte
66 #define AD7779_REG_CH_GAIN_LOWER_BYTE(ch) (0x21 + (ch) * 6) // Channel gain lower byte
67 #define AD7779_REG_CH_ERR_REG(ch) (0x4C + (ch)) // Channel Status Register
68 #define AD7779_REG_CH0_1_SAT_ERR 0x54 // Channel 0/1 DSP errors
69 #define AD7779_REG_CH2_3_SAT_ERR 0x55 // Channel 2/3 DSP errors
70 #define AD7779_REG_CH4_5_SAT_ERR 0x56 // Channel 4/5 DSP errors
71 #define AD7779_REG_CH6_7_SAT_ERR 0x57 // Channel 6/7 DSP errors
72 #define AD7779_REG_CHX_ERR_REG_EN 0x58 // Channel 0-7 Error Reg Enable
73 #define AD7779_REG_GEN_ERR_REG_1 0x59 // General Errors Register 1
74 #define AD7779_REG_GEN_ERR_REG_1_EN 0x5A // General Errors Register 1 Enable
75 #define AD7779_REG_GEN_ERR_REG_2 0x5B // General Errors Register 2
76 #define AD7779_REG_GEN_ERR_REG_2_EN 0x5C // General Errors Register 2 Enable
77 #define AD7779_REG_STATUS_REG_1 0x5D // Error Status Register 1
78 #define AD7779_REG_STATUS_REG_2 0x5E // Error Status Register 2
79 #define AD7779_REG_STATUS_REG_3 0x5F // Error Status Register 3
80 #define AD7779_REG_SRC_N_MSB 0x60 // Decimation Rate (N) MSB
81 #define AD7779_REG_SRC_N_LSB 0x61 // Decimation Rate (N) LSB
82 #define AD7779_REG_SRC_IF_MSB 0x62 // Decimation Rate (IF) MSB
83 #define AD7779_REG_SRC_IF_LSB 0x63 // Decimation Rate (IF) LSB
84 #define AD7779_REG_SRC_UPDATE 0x64 // SRC load source and load update
85 
86 /* AD7779_REG_CHx_CONFIG */
87 #define AD7779_CH_GAIN(x) (((x) & 0x3) << 6)
88 #define AD7779_CH_RX (1 << 4)
89 
90 /* AD7779_REG_CH_DISABLE */
91 #define AD7779_CH_DISABLE(x) (1 << (x))
92 
93 /* AD7779_REG_GENERAL_USER_CONFIG_1 */
94 #define AD7779_ALL_CH_DIS_MCLK_EN (1 << 7)
95 #define AD7779_MOD_POWERMODE (1 << 6)
96 #define AD7779_PDB_VCM (1 << 5)
97 #define AD7779_PDB_REFOUT_BUF (1 << 4)
98 #define AD7779_PDB_SAR (1 << 3)
99 #define AD7779_PDB_RC_OSC (1 << 2)
100 #define AD7779_SOFT_RESET(x) (((x) & 0x3) << 0)
101 
102 /* AD7779_REG_GENERAL_USER_CONFIG_2 */
103 #define AD7771_FILTER_MODE (1 << 6)
104 #define AD7779_SAR_DIAG_MODE_EN (1 << 5)
105 #define AD7779_SDO_DRIVE_STR(x) (((x) & 0x3) << 3)
106 #define AD7779_DOUT_DRIVE_STR(x) (((x) & 0x3) << 1)
107 #define AD7779_SPI_SYNC (1 << 0)
108 
109 /* AD7779_REG_GENERAL_USER_CONFIG_3 */
110 #define AD7779_CONVST_DEGLITCH_DIS(x) (((x) & 0x3) << 6)
111 #define AD7779_SPI_SLAVE_MODE_EN (1 << 4)
112 #define AD7779_CLK_QUAL_DIS (1 << 0)
113 
114 /* AD7779_REG_DOUT_FORMAT */
115 #define AD7779_DOUT_FORMAT(x) (((x) & 0x3) << 6)
116 #define AD7779_DOUT_HEADER_FORMAT (1 << 5)
117 #define AD7779_DCLK_CLK_DIV(x) (((x) & 0x7) << 1)
118 
119 /* AD7779_REG_ADC_MUX_CONFIG */
120 #define AD7779_REF_MUX_CTRL(x) (((x) & 0x3) << 6)
121 
122 /* AD7779_REG_GLOBAL_MUX_CONFIG */
123 #define AD7779_GLOBAL_MUX_CTRL(x) (((x) & 0x1F) << 3)
124 
125 /* AD7779_REG_BUFFER_CONFIG_1 */
126 #define AD7779_REF_BUF_POS_EN (1 << 4)
127 #define AD7779_REF_BUF_NEG_EN (1 << 3)
128 
129 /* AD7779_REG_BUFFER_CONFIG_2 */
130 #define AD7779_REFBUFP_PREQ (1 << 7)
131 #define AD7779_REFBUFN_PREQ (1 << 6)
132 #define AD7779_PDB_ALDO1_OVRDRV (1 << 2)
133 #define AD7779_PDB_ALDO2_OVRDRV (1 << 1)
134 #define AD7779_PDB_DLDO_OVRDRV (1 << 0)
135 
136 /* AD7779_REG_GEN_ERR_REG_1_EN */
137 #define AD7779_MEMMAP_CRC_TEST_EN (1 << 5)
138 #define AD7779_ROM_CRC_TEST_EN (1 << 4)
139 #define AD7779_SPI_CLK_COUNT_TEST_EN (1 << 3)
140 #define AD7779_SPI_INVALID_READ_TEST_EN (1 << 2)
141 #define AD7779_SPI_INVALID_WRITE_TEST_EN (1 << 1)
142 #define AD7779_SPI_CRC_TEST_EN (1 << 0)
143 
144 #define AD7779_CRC8_POLY 0x07
145 
146 /******************************************************************************/
147 /*************************** Types Declarations *******************************/
148 /******************************************************************************/
149 typedef enum {
153 
154 typedef enum {
159 
160 typedef enum {
169 } ad7779_ch;
170 
171 typedef enum {
174 } ad7779_state;
175 
176 typedef enum {
181 } ad7779_gain;
182 
183 typedef enum {
193 
194 typedef enum {
198 
199 typedef enum {
205 
206 typedef enum {
210 
211 typedef enum {
216 
217 typedef enum {
241 
242 typedef struct {
243  /* SPI */
245  /* GPIO */
256  /* Device Settings */
260  ad7779_state state[8];
261  ad7779_gain gain[8];
262  uint16_t dec_rate_int;
263  uint16_t dec_rate_dec;
267  uint8_t sync_offset[8];
268  uint32_t offset_corr[8];
269  uint32_t gain_corr[8];
270  ad7779_ref_buf_op_mode ref_buf_op_mode[2];
273  ad7779_state sinc5_state; // Can be enabled only for AD7771
275  uint8_t cached_reg_val[AD7779_REG_SRC_UPDATE + 1];
276 } ad7779_dev;
277 
278 typedef struct {
279  /* SPI */
281  /* GPIO */
282  struct no_os_gpio_init_param gpio_reset;
283  struct no_os_gpio_init_param gpio_mode0;
284  struct no_os_gpio_init_param gpio_mode1;
285  struct no_os_gpio_init_param gpio_mode2;
286  struct no_os_gpio_init_param gpio_mode3;
287  struct no_os_gpio_init_param gpio_dclk0;
288  struct no_os_gpio_init_param gpio_dclk1;
289  struct no_os_gpio_init_param gpio_dclk2;
290  struct no_os_gpio_init_param gpio_sync_in;
291  struct no_os_gpio_init_param gpio_convst_sar;
292  /* Device Settings */
295  ad7779_state state[8];
296  ad7779_gain gain[8];
297  uint16_t dec_rate_int;
298  uint16_t dec_rate_dec;
302  uint8_t sync_offset[8];
303  uint32_t offset_corr[8];
304  uint32_t gain_corr[8];
305  ad7779_ref_buf_op_mode ref_buf_op_mode[2];
306  ad7779_state sinc5_state; // Can be enabled only for AD7771
309 
310 /******************************************************************************/
311 /************************ Functions Declarations ******************************/
312 /******************************************************************************/
313 /* Compute CRC8 checksum. */
314 uint8_t ad7779_compute_crc8(uint8_t *data,
315  uint8_t data_size);
316 /* SPI read from device. */
318  uint8_t reg_addr,
319  uint8_t *reg_data);
320 /* SPI write to device. */
322  uint8_t reg_addr,
323  uint8_t reg_data);
324 /* SPI read from device using a mask. */
326  uint8_t reg_addr,
327  uint8_t mask,
328  uint8_t *data);
329 /* SPI write to device using a mask. */
331  uint8_t reg_addr,
332  uint8_t mask,
333  uint8_t data);
334 /* SPI SAR conversion code read. */
336  ad7779_sar_mux mux_next_conv,
337  uint16_t *sar_code);
338 /* Set SPI operation mode. */
340  ad7779_spi_op_mode mode);
341 /* Get SPI operation mode. */
343  ad7779_spi_op_mode *mode);
344 /* Set the state (enable, disable) of the channel. */
345 int32_t ad7779_set_state(ad7779_dev *dev,
346  ad7779_ch ch,
347  ad7779_state state);
348 /* Get the state (enable, disable) of the selected channel. */
349 int32_t ad7779_get_state(ad7779_dev *dev,
350  ad7779_ch ch,
351  ad7779_state *state);
352 /* Update the state of the MODEx pins according to the settings specified in
353  * the device structure. */
355 /* Set the gain of the selected channel. */
356 int32_t ad7779_set_gain(ad7779_dev *dev,
357  ad7779_ch ch,
358  ad7779_gain gain);
359 /* Get the gain of the selected channel. */
360 int32_t ad7779_get_gain(ad7779_dev *dev,
361  ad7779_ch ch,
362  ad7779_gain *gain);
363 /* Set the decimation rate. */
364 int32_t ad7779_set_dec_rate(ad7779_dev *dev,
365  uint16_t int_val,
366  uint16_t dec_val);
367 /* Get the decimation rate. */
368 int32_t ad7779_get_dec_rate(ad7779_dev *dev,
369  uint16_t *int_val,
370  uint16_t *dec_val);
371 /* Set the power mode. */
372 int32_t ad7779_set_power_mode(ad7779_dev *dev,
373  ad7779_pwr_mode pwr_mode);
374 /* Get the power mode. */
375 int32_t ad7779_get_power_mode(ad7779_dev *dev,
376  ad7779_pwr_mode *pwr_mode);
377 /* Set the reference type. */
379  ad7779_ref_type ref_type);
380 /* Get the reference type. */
382  ad7779_ref_type *ref_type);
383 /* Set the DCLK divider. */
384 int32_t ad7779_set_dclk_div(ad7779_dev *dev,
385  ad7779_dclk_div div);
386 /* Get the DCLK divider. */
387 int32_t ad7779_get_dclk_div(ad7779_dev *dev,
388  ad7779_dclk_div *div);
389 /* Set the synchronization offset of the selected channel. */
391  ad7779_ch ch,
392  uint8_t sync_offset);
393 /* Get the synchronization offset of the selected channel. */
395  ad7779_ch ch,
396  uint8_t *sync_offset);
397 /* Set the offset correction of the selected channel. */
399  ad7779_ch ch,
400  uint32_t offset);
401 /* Get the offset correction of the selected channel. */
403  ad7779_ch ch,
404  uint32_t *offset);
405 /* Set the gain correction of the selected channel. */
406 int32_t ad7779_set_gain_corr(ad7779_dev *dev,
407  ad7779_ch ch,
408  uint32_t gain);
409 /* Get the gain correction of the selected channel. */
410 int32_t ad7779_get_gain_corr(ad7779_dev *dev,
411  ad7779_ch ch,
412  uint32_t *gain);
413 /* Set the reference buffer operation mode of the selected pin. */
415  ad7779_refx_pin refx_pin,
417 /* Get the reference buffer operation mode of the selected pin. */
419  ad7779_refx_pin refx_pin,
420  ad7779_ref_buf_op_mode *mode);
421 /* Set the SAR ADC configuration. */
422 int32_t ad7779_set_sar_cfg(ad7779_dev *dev,
423  ad7779_state state,
424  ad7779_sar_mux mux);
425 /* Get the SAR ADC configuration. */
426 int32_t ad7779_get_sar_cfg(ad7779_dev *dev,
427  ad7779_state *state,
428  ad7779_sar_mux *mux);
429 /* Do a single SAR conversion. */
431  ad7779_sar_mux mux,
432  uint16_t *sar_code);
433 /* Do a SPI software reset. */
435 /* Set the state (enable, disable) of the SINC5 filter. */
437  ad7779_state state);
438 /* Get the state (enable, disable) of the SINC5 filter. */
440  ad7779_state *state);
441 /* Initialize the device. */
442 int32_t ad7779_init(ad7779_dev **device,
444 
445 /* Free the resources allocated by ad7779_init(). */
446 int32_t ad7779_remove(ad7779_dev *dev);
447 
448 #endif // AD7779_H_
AD7779_REG_GLOBAL_MUX_CONFIG
#define AD7779_REG_GLOBAL_MUX_CONFIG
Definition: ad7779.h:56
ad7779_init_param::ctrl_mode
ad7779_ctrl_mode ctrl_mode
Definition: ad7779.h:293
AD7779_MOD_POWERMODE
#define AD7779_MOD_POWERMODE
Definition: ad7779.h:95
AD7779_AVDD2A_AVSSX_ATT
@ AD7779_AVDD2A_AVSSX_ATT
Definition: ad7779.h:229
ad7779_init_param::ref_type
ad7779_ref_type ref_type
Definition: ad7779.h:299
ad7779_spi_int_reg_read_mask
int32_t ad7779_spi_int_reg_read_mask(ad7779_dev *dev, uint8_t reg_addr, uint8_t mask, uint8_t *data)
Definition: ad7779.c:168
AD7779_REG_CH_SYNC_OFFSET
#define AD7779_REG_CH_SYNC_OFFSET(ch)
Definition: ad7779.h:50
ad7779_get_sar_cfg
int32_t ad7779_get_sar_cfg(ad7779_dev *dev, ad7779_state *state, ad7779_sar_mux *mux)
Definition: ad7779.c:1319
no_os_alloc.h
ad7779_init_param::pwr_mode
ad7779_pwr_mode pwr_mode
Definition: ad7779.h:300
no_os_gpio_init_param
Structure holding the parameters for GPIO initialization.
Definition: no_os_gpio.h:79
AD7779_PIN_CTRL
@ AD7779_PIN_CTRL
Definition: ad7779.h:150
AD7779_REG_BUFFER_CONFIG_2
#define AD7779_REG_BUFFER_CONFIG_2
Definition: ad7779.h:60
ad7779_compute_crc8
uint8_t ad7779_compute_crc8(uint8_t *data, uint8_t data_size)
Definition: ad7779.c:76
AD7779_EXT_REF_INV
@ AD7779_EXT_REF_INV
Definition: ad7779.h:203
AD7779_REG_CH_GAIN_UPPER_BYTE
#define AD7779_REG_CH_GAIN_UPPER_BYTE(ch)
Definition: ad7779.h:64
ad7779_dev::dec_rate_int
uint16_t dec_rate_int
Definition: ad7779.h:262
ad7779_get_gain
int32_t ad7779_get_gain(ad7779_dev *dev, ad7779_ch ch, ad7779_gain *gain)
Definition: ad7779.c:557
ad7779_dev::sinc5_state
ad7779_state sinc5_state
Definition: ad7779.h:273
AD7779_REG_CH_OFFSET_UPPER_BYTE
#define AD7779_REG_CH_OFFSET_UPPER_BYTE(ch)
Definition: ad7779.h:61
ad7779_dev::spi_desc
struct no_os_spi_desc * spi_desc
Definition: ad7779.h:244
ad7779_dev::gpio_dclk0
struct no_os_gpio_desc * gpio_dclk0
Definition: ad7779.h:251
ad7779_get_state
int32_t ad7779_get_state(ad7779_dev *dev, ad7779_ch ch, ad7779_state *state)
Definition: ad7779.c:473
ad7779_spi_int_reg_write
int32_t ad7779_spi_int_reg_write(ad7779_dev *dev, uint8_t reg_addr, uint8_t reg_data)
Definition: ad7779.c:140
AD7779_REG_SRC_UPDATE
#define AD7779_REG_SRC_UPDATE
Definition: ad7779.h:84
ad7779_dev::cached_reg_val
uint8_t cached_reg_val[AD7779_REG_SRC_UPDATE+1]
Definition: ad7779.h:275
no_os_spi_write_and_read
int32_t no_os_spi_write_and_read(struct no_os_spi_desc *desc, uint8_t *data, uint16_t bytes_number)
Write and read data to/from SPI.
Definition: no_os_spi.c:159
AD7779_CRC8_POLY
#define AD7779_CRC8_POLY
Definition: ad7779.h:144
ad7779_spi_sar_read_code
int32_t ad7779_spi_sar_read_code(ad7779_dev *dev, ad7779_sar_mux mux_next_conv, uint16_t *sar_code)
Definition: ad7779.c:236
ad7779_init_param::dec_rate_dec
uint16_t dec_rate_dec
Definition: ad7779.h:298
ad7779_get_dec_rate
int32_t ad7779_get_dec_rate(ad7779_dev *dev, uint16_t *int_val, uint16_t *dec_val)
Definition: ad7779.c:641
AD7779_DCLK_DIV_32
@ AD7779_DCLK_DIV_32
Definition: ad7779.h:189
ad7779_dev::gpio_reset
struct no_os_gpio_desc * gpio_reset
Definition: ad7779.h:246
ad7779_spi_int_reg_write_mask
int32_t ad7779_spi_int_reg_write_mask(ad7779_dev *dev, uint8_t reg_addr, uint8_t mask, uint8_t data)
Definition: ad7779.c:190
ad7779_get_state
int32_t ad7779_get_state(ad7779_dev *dev, ad7779_ch ch, ad7779_state *state)
Definition: ad7779.c:473
AD7779_SD_CONV
@ AD7779_SD_CONV
Definition: ad7779.h:156
no_os_spi.h
Header file of SPI Interface.
ad7779_set_sync_offset
int32_t ad7779_set_sync_offset(ad7779_dev *dev, ad7779_ch ch, uint8_t sync_offset)
Definition: ad7779.c:862
ad7779_get_sync_offset
int32_t ad7779_get_sync_offset(ad7779_dev *dev, ad7779_ch ch, uint8_t *sync_offset)
Definition: ad7779.c:897
AD7779_REFX_N
@ AD7779_REFX_N
Definition: ad7779.h:208
ad7779_set_dclk_div
int32_t ad7779_set_dclk_div(ad7779_dev *dev, ad7779_dclk_div div)
Definition: ad7779.c:800
ad7779_dev::sar_mux
ad7779_sar_mux sar_mux
Definition: ad7779.h:272
AD7779_DGND_AVSS1A_ATT
@ AD7779_DGND_AVSS1A_ATT
Definition: ad7779.h:233
ad7779_spi_int_reg_read
int32_t ad7779_spi_int_reg_read(ad7779_dev *dev, uint8_t reg_addr, uint8_t *reg_data)
Definition: ad7779.c:104
AD7779_ENABLE
@ AD7779_ENABLE
Definition: ad7779.h:172
ad7779_get_ref_buf_op_mode
int32_t ad7779_get_ref_buf_op_mode(ad7779_dev *dev, ad7779_refx_pin refx_pin, ad7779_ref_buf_op_mode *mode)
Definition: ad7779.c:1210
ad7779_init_param::spi_crc_en
ad7779_state spi_crc_en
Definition: ad7779.h:294
AD7779_INT_REF
@ AD7779_INT_REF
Definition: ad7779.h:201
AD7779_REG_SRC_N_LSB
#define AD7779_REG_SRC_N_LSB
Definition: ad7779.h:81
AD7779_REG_CH_OFFSET_LOWER_BYTE
#define AD7779_REG_CH_OFFSET_LOWER_BYTE(ch)
Definition: ad7779.h:63
ad7779_set_reference_type
int32_t ad7779_set_reference_type(ad7779_dev *dev, ad7779_ref_type ref_type)
Definition: ad7779.c:732
ad7779_get_sync_offset
int32_t ad7779_get_sync_offset(ad7779_dev *dev, ad7779_ch ch, uint8_t *sync_offset)
Definition: ad7779.c:897
ad7779_set_ref_buf_op_mode
int32_t ad7779_set_ref_buf_op_mode(ad7779_dev *dev, ad7779_refx_pin refx_pin, ad7779_ref_buf_op_mode mode)
Definition: ad7779.c:1134
ad7779_dev::dclk_div
ad7779_dclk_div dclk_div
Definition: ad7779.h:266
AD7779_DVBE_AVSSX
@ AD7779_DVBE_AVSSX
Definition: ad7779.h:219
ad7779_set_dec_rate
int32_t ad7779_set_dec_rate(ad7779_dev *dev, uint16_t int_val, uint16_t dec_val)
Definition: ad7779.c:583
ad7779_refx_pin
ad7779_refx_pin
Definition: ad7779.h:206
ad7771_set_sinc5_filter_state
int32_t ad7771_set_sinc5_filter_state(ad7779_dev *dev, ad7779_state state)
Definition: ad7779.c:1424
ad7779_remove
int32_t ad7779_remove(ad7779_dev *dev)
Free the resources allocated by ad7779_init().
Definition: ad7779.c:1630
ad7779_set_gain
int32_t ad7779_set_gain(ad7779_dev *dev, ad7779_ch ch, ad7779_gain gain)
Definition: ad7779.c:512
ad7779_dev::offset_corr
uint32_t offset_corr[8]
Definition: ad7779.h:268
no_os_delay.h
Header file of Delay functions.
pin_mode_options
const uint8_t pin_mode_options[16][4]
Definition: ad7779.c:47
ad7779_init_param::sinc5_state
ad7779_state sinc5_state
Definition: ad7779.h:306
ad7779_init
int32_t ad7779_init(ad7779_dev **device, ad7779_init_param init_param)
Definition: ad7779.c:1481
ad7779_get_dclk_div
int32_t ad7779_get_dclk_div(ad7779_dev *dev, ad7779_dclk_div *div)
Definition: ad7779.c:829
ad7779_spi_int_reg_write
int32_t ad7779_spi_int_reg_write(ad7779_dev *dev, uint8_t reg_addr, uint8_t reg_data)
Definition: ad7779.c:140
ad7779_get_spi_op_mode
int32_t ad7779_get_spi_op_mode(ad7779_dev *dev, ad7779_spi_op_mode *mode)
Definition: ad7779.c:315
ad7779_get_gain_corr
int32_t ad7779_get_gain_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t *gain)
Definition: ad7779.c:1085
device
Definition: ad9361_util.h:69
ad7779_dev::spi_crc_en
ad7779_state spi_crc_en
Definition: ad7779.h:258
NO_OS_GPIO_HIGH
@ NO_OS_GPIO_HIGH
Definition: no_os_gpio.h:117
AD7779_REFBUFN_PREQ
#define AD7779_REFBUFN_PREQ
Definition: ad7779.h:131
AD7779_REG_SRC_N_MSB
#define AD7779_REG_SRC_N_MSB
Definition: ad7779.h:80
AD7779_REG_DOUT_FORMAT
#define AD7779_REG_DOUT_FORMAT
Definition: ad7779.h:54
AD7779_GLOBAL_MUX_CTRL
#define AD7779_GLOBAL_MUX_CTRL(x)
Definition: ad7779.h:123
AD7779_REF2P_AVSSX
@ AD7779_REF2P_AVSSX
Definition: ad7779.h:238
AD7779_REF_BUF_PRECHARGED
@ AD7779_REF_BUF_PRECHARGED
Definition: ad7779.h:213
ad7779_set_power_mode
int32_t ad7779_set_power_mode(ad7779_dev *dev, ad7779_pwr_mode pwr_mode)
Definition: ad7779.c:684
ad7779_get_power_mode
int32_t ad7779_get_power_mode(ad7779_dev *dev, ad7779_pwr_mode *pwr_mode)
Definition: ad7779.c:704
AD7779_CH5
@ AD7779_CH5
Definition: ad7779.h:166
ad7779_set_gain_corr
int32_t ad7779_set_gain_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t gain)
Definition: ad7779.c:1037
ad7779_dev::gpio_convst_sar
struct no_os_gpio_desc * gpio_convst_sar
Definition: ad7779.h:255
AD7779_VCM_AVSSX
@ AD7779_VCM_AVSSX
Definition: ad7779.h:223
ad7779_dev::gain
ad7779_gain gain[8]
Definition: ad7779.h:261
ad7779_dev::state
ad7779_state state[8]
Definition: ad7779.h:260
ad7779_state
ad7779_state
Definition: ad7779.h:171
ad7779_dev::sync_offset
uint8_t sync_offset[8]
Definition: ad7779.h:267
AD7779_REG_CH_GAIN_MID_BYTE
#define AD7779_REG_CH_GAIN_MID_BYTE(ch)
Definition: ad7779.h:65
AD7779_REG_GENERAL_USER_CONFIG_1
#define AD7779_REG_GENERAL_USER_CONFIG_1
Definition: ad7779.h:51
AD7779_AUXAINP_AUXAINN
@ AD7779_AUXAINP_AUXAINN
Definition: ad7779.h:218
ad7779_dev::gpio_mode1
struct no_os_gpio_desc * gpio_mode1
Definition: ad7779.h:248
ad7779_set_power_mode
int32_t ad7779_set_power_mode(ad7779_dev *dev, ad7779_pwr_mode pwr_mode)
Definition: ad7779.c:684
ad7779_set_reference_type
int32_t ad7779_set_reference_type(ad7779_dev *dev, ad7779_ref_type ref_type)
Definition: ad7779.c:732
AD7779_REG_CH_DISABLE
#define AD7779_REG_CH_DISABLE
Definition: ad7779.h:49
ad7779_do_update_mode_pins
int32_t ad7779_do_update_mode_pins(ad7779_dev *dev)
Definition: ad7779.c:356
ad7779_set_dec_rate
int32_t ad7779_set_dec_rate(ad7779_dev *dev, uint16_t int_val, uint16_t dec_val)
Definition: ad7779.c:583
AD7779_PDB_REFOUT_BUF
#define AD7779_PDB_REFOUT_BUF
Definition: ad7779.h:97
NO_OS_GPIO_LOW
@ NO_OS_GPIO_LOW
Definition: no_os_gpio.h:115
AD7779_AVDD1A_AVSSX_ATT
@ AD7779_AVDD1A_AVSSX_ATT
Definition: ad7779.h:227
ad7779_set_spi_op_mode
int32_t ad7779_set_spi_op_mode(ad7779_dev *dev, ad7779_spi_op_mode mode)
Definition: ad7779.c:276
AD7779_DCLK_DIV_64
@ AD7779_DCLK_DIV_64
Definition: ad7779.h:190
ad7779_ch
ad7779_ch
Definition: ad7779.h:160
AD7779_SPI_CTRL
@ AD7779_SPI_CTRL
Definition: ad7779.h:151
ad7779_init_param::dec_rate_int
uint16_t dec_rate_int
Definition: ad7779.h:297
AD7779_REG_GENERAL_USER_CONFIG_3
#define AD7779_REG_GENERAL_USER_CONFIG_3
Definition: ad7779.h:53
AD7779_DCLK_DIV_8
@ AD7779_DCLK_DIV_8
Definition: ad7779.h:187
no_os_mdelay
void no_os_mdelay(uint32_t msecs)
Wait until msecs milliseconds passed.
Definition: aducm3029_delay.c:126
ad7779_dev::gpio_mode2
struct no_os_gpio_desc * gpio_mode2
Definition: ad7779.h:249
ad7779_spi_op_mode
ad7779_spi_op_mode
Definition: ad7779.h:154
ad7779_do_update_mode_pins
int32_t ad7779_do_update_mode_pins(ad7779_dev *dev)
Definition: ad7779.c:356
AD7779_REF2P_REF2N
@ AD7779_REF2P_REF2N
Definition: ad7779.h:221
AD7779_REF1P_AVSSX
@ AD7779_REF1P_AVSSX
Definition: ad7779.h:237
no_os_error.h
Error codes definition.
ad7779_dev::ref_buf_op_mode
ad7779_ref_buf_op_mode ref_buf_op_mode[2]
Definition: ad7779.h:270
AD7779_GAIN_2
@ AD7779_GAIN_2
Definition: ad7779.h:178
ad7779_ref_type
ad7779_ref_type
Definition: ad7779.h:199
AD7779_REG_GENERAL_USER_CONFIG_2
#define AD7779_REG_GENERAL_USER_CONFIG_2
Definition: ad7779.h:52
AD7779_REG_CH_OFFSET_MID_BYTE
#define AD7779_REG_CH_OFFSET_MID_BYTE(ch)
Definition: ad7779.h:62
AD7779_LOW_PWR
@ AD7779_LOW_PWR
Definition: ad7779.h:195
AD7779_REFX_P
@ AD7779_REFX_P
Definition: ad7779.h:207
AD7779_IOVDD_DGND_ATT
@ AD7779_IOVDD_DGND_ATT
Definition: ad7779.h:231
AD7779_REF_BUF_DISABLED
@ AD7779_REF_BUF_DISABLED
Definition: ad7779.h:214
AD7779_AVDD4_AVSSX
@ AD7779_AVDD4_AVSSX
Definition: ad7779.h:232
ad7779_dev::pwr_mode
ad7779_pwr_mode pwr_mode
Definition: ad7779.h:265
AD7779_DCLK_DIV_1
@ AD7779_DCLK_DIV_1
Definition: ad7779.h:184
ad7771_get_sinc5_filter_state
int32_t ad7771_get_sinc5_filter_state(ad7779_dev *dev, ad7779_state *state)
Definition: ad7779.c:1451
ad7779_set_sync_offset
int32_t ad7779_set_sync_offset(ad7779_dev *dev, ad7779_ch ch, uint8_t sync_offset)
Definition: ad7779.c:862
ad7779_dev::ref_type
ad7779_ref_type ref_type
Definition: ad7779.h:264
AD7779_REG_SRC_IF_MSB
#define AD7779_REG_SRC_IF_MSB
Definition: ad7779.h:82
ad7779_spi_int_reg_read
int32_t ad7779_spi_int_reg_read(ad7779_dev *dev, uint8_t reg_addr, uint8_t *reg_data)
Definition: ad7779.c:104
AD7779_DREGCAP_DGND_ATT
@ AD7779_DREGCAP_DGND_ATT
Definition: ad7779.h:226
AD7779_AVDD4_AVSSX_ATT
@ AD7779_AVDD4_AVSSX_ATT
Definition: ad7779.h:236
AD7779_REG_ADC_MUX_CONFIG
#define AD7779_REG_ADC_MUX_CONFIG
Definition: ad7779.h:55
AD7779_REG_GEN_ERR_REG_1_EN
#define AD7779_REG_GEN_ERR_REG_1_EN
Definition: ad7779.h:74
ad7779_set_state
int32_t ad7779_set_state(ad7779_dev *dev, ad7779_ch ch, ad7779_state state)
Definition: ad7779.c:443
ad7779_init_param::read_from_cache
bool read_from_cache
Definition: ad7779.h:307
ad7779_set_sar_cfg
int32_t ad7779_set_sar_cfg(ad7779_dev *dev, ad7779_state state, ad7779_sar_mux mux)
Definition: ad7779.c:1292
ad7779_gain
ad7779_gain
Definition: ad7779.h:176
ad7779_set_offset_corr
int32_t ad7779_set_offset_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t offset)
Definition: ad7779.c:937
AD7779_REFBUFP_PREQ
#define AD7779_REFBUFP_PREQ
Definition: ad7779.h:130
AD7779_CH7
@ AD7779_CH7
Definition: ad7779.h:168
AD7779_AVDD1B_AVSSX_ATT
@ AD7779_AVDD1B_AVSSX_ATT
Definition: ad7779.h:228
ad7779_get_dclk_div
int32_t ad7779_get_dclk_div(ad7779_dev *dev, ad7779_dclk_div *div)
Definition: ad7779.c:829
AD7779_REF_BUF_POS_EN
#define AD7779_REF_BUF_POS_EN
Definition: ad7779.h:126
ad7779_get_gain_corr
int32_t ad7779_get_gain_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t *gain)
Definition: ad7779.c:1085
ad7779_compute_crc8
uint8_t ad7779_compute_crc8(uint8_t *data, uint8_t data_size)
Definition: ad7779.c:76
ad7779_set_offset_corr
int32_t ad7779_set_offset_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t offset)
Definition: ad7779.c:937
no_os_gpio_remove
int32_t no_os_gpio_remove(struct no_os_gpio_desc *desc)
Free the resources allocated by no_os_gpio_get().
Definition: no_os_gpio.c:104
ad7779_dev::gpio_dclk1
struct no_os_gpio_desc * gpio_dclk1
Definition: ad7779.h:252
no_os_spi_desc
Structure holding SPI descriptor.
Definition: no_os_spi.h:192
ad7771_get_sinc5_filter_state
int32_t ad7771_get_sinc5_filter_state(ad7779_dev *dev, ad7779_state *state)
Definition: ad7779.c:1451
AD7779_CH_GAIN
#define AD7779_CH_GAIN(x)
Definition: ad7779.h:87
spi_init
struct no_os_spi_init_param spi_init
Definition: common_data.c:120
ad7779_dev::gpio_mode3
struct no_os_gpio_desc * gpio_mode3
Definition: ad7779.h:250
no_os_gpio_desc
Structure holding the GPIO descriptor.
Definition: no_os_gpio.h:96
AD7779_INT_REG
@ AD7779_INT_REG
Definition: ad7779.h:155
ad7779_sar_mux
ad7779_sar_mux
Definition: ad7779.h:217
AD7779_AVDD2B_AVSSX_ATT
@ AD7779_AVDD2B_AVSSX_ATT
Definition: ad7779.h:230
AD7779_GAIN_1
@ AD7779_GAIN_1
Definition: ad7779.h:177
AD7779_SPI_CRC_TEST_EN
#define AD7779_SPI_CRC_TEST_EN
Definition: ad7779.h:142
AD7779_EXT_SUPPLY
@ AD7779_EXT_SUPPLY
Definition: ad7779.h:202
ad7779_do_spi_soft_reset
int32_t ad7779_do_spi_soft_reset(ad7779_dev *dev)
Definition: ad7779.c:1404
ad7779_spi_sar_read_code
int32_t ad7779_spi_sar_read_code(ad7779_dev *dev, ad7779_sar_mux mux_next_conv, uint16_t *sar_code)
Definition: ad7779.c:236
ad7779_get_dec_rate
int32_t ad7779_get_dec_rate(ad7779_dev *dev, uint16_t *int_val, uint16_t *dec_val)
Definition: ad7779.c:641
AD7779_GAIN_4
@ AD7779_GAIN_4
Definition: ad7779.h:179
ad7779_get_reference_type
int32_t ad7779_get_reference_type(ad7779_dev *dev, ad7779_ref_type *ref_type)
Definition: ad7779.c:768
ad7779_set_sar_cfg
int32_t ad7779_set_sar_cfg(ad7779_dev *dev, ad7779_state state, ad7779_sar_mux mux)
Definition: ad7779.c:1292
ad7779_ctrl_mode
ad7779_ctrl_mode
Definition: ad7779.h:149
ad7779_dev::gpio_mode0
struct no_os_gpio_desc * gpio_mode0
Definition: ad7779.h:247
AD7779_DGND_AVSSX_ATT
@ AD7779_DGND_AVSSX_ATT
Definition: ad7779.h:235
no_os_gpio_get
int32_t no_os_gpio_get(struct no_os_gpio_desc **desc, const struct no_os_gpio_init_param *param)
Obtain the GPIO decriptor.
Definition: no_os_gpio.c:49
no_os_malloc
void * no_os_malloc(size_t size)
Allocate memory and return a pointer to it.
Definition: chibios_alloc.c:43
ad7779_dev
Definition: ad7779.h:242
AD7779_CH1
@ AD7779_CH1
Definition: ad7779.h:162
ad7779_get_reference_type
int32_t ad7779_get_reference_type(ad7779_dev *dev, ad7779_ref_type *ref_type)
Definition: ad7779.c:768
AD7779_DGND_AVSS1B_ATT
@ AD7779_DGND_AVSS1B_ATT
Definition: ad7779.h:234
AD7779_REG_CH_GAIN_LOWER_BYTE
#define AD7779_REG_CH_GAIN_LOWER_BYTE(ch)
Definition: ad7779.h:66
no_os_field_get
uint32_t no_os_field_get(uint32_t mask, uint32_t word)
ad7771_set_sinc5_filter_state
int32_t ad7771_set_sinc5_filter_state(ad7779_dev *dev, ad7779_state state)
Definition: ad7779.c:1424
ad7779_do_single_sar_conv
int32_t ad7779_do_single_sar_conv(ad7779_dev *dev, ad7779_sar_mux mux, uint16_t *sar_code)
Definition: ad7779.c:1376
AD7779_REG_SRC_IF_LSB
#define AD7779_REG_SRC_IF_LSB
Definition: ad7779.h:83
AD7779_AVSSX_AVDD4_ATT
@ AD7779_AVSSX_AVDD4_ATT
Definition: ad7779.h:239
no_os_free
void no_os_free(void *ptr)
Deallocate memory previously allocated by a call to no_os_calloc or no_os_malloc.
Definition: chibios_alloc.c:69
ad7779.h
Header file of AD7779 Driver.
AD7779_REF_BUF_NEG_EN
#define AD7779_REF_BUF_NEG_EN
Definition: ad7779.h:127
ad7779_init_param::dclk_div
ad7779_dclk_div dclk_div
Definition: ad7779.h:301
AD7779_EXT_REF
@ AD7779_EXT_REF
Definition: ad7779.h:200
AD7779_PDB_SAR
#define AD7779_PDB_SAR
Definition: ad7779.h:98
ad7779_get_offset_corr
int32_t ad7779_get_offset_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t *offset)
Definition: ad7779.c:984
no_os_gpio_set_value
int32_t no_os_gpio_set_value(struct no_os_gpio_desc *desc, uint8_t value)
Set the value of the specified GPIO.
Definition: no_os_gpio.c:197
init_param
struct ad7616_init_param init_param
Definition: ad7616_sdz.c:113
ad7779_get_power_mode
int32_t ad7779_get_power_mode(ad7779_dev *dev, ad7779_pwr_mode *pwr_mode)
Definition: ad7779.c:704
ad7779_set_gain_corr
int32_t ad7779_set_gain_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t gain)
Definition: ad7779.c:1037
AD7779_SPI_SLAVE_MODE_EN
#define AD7779_SPI_SLAVE_MODE_EN
Definition: ad7779.h:111
ad7779_dev::ctrl_mode
ad7779_ctrl_mode ctrl_mode
Definition: ad7779.h:257
AD7779_DISABLE
@ AD7779_DISABLE
Definition: ad7779.h:173
ad7779_dclk_div
ad7779_dclk_div
Definition: ad7779.h:183
AD7779_DCLK_DIV_2
@ AD7779_DCLK_DIV_2
Definition: ad7779.h:185
AD7779_DCLK_DIV_128
@ AD7779_DCLK_DIV_128
Definition: ad7779.h:191
ad7779_set_state
int32_t ad7779_set_state(ad7779_dev *dev, ad7779_ch ch, ad7779_state state)
Definition: ad7779.c:443
AD7779_CH2
@ AD7779_CH2
Definition: ad7779.h:163
ad7779_dev::sar_state
ad7779_state sar_state
Definition: ad7779.h:271
ad7779_spi_int_reg_write_mask
int32_t ad7779_spi_int_reg_write_mask(ad7779_dev *dev, uint8_t reg_addr, uint8_t mask, uint8_t data)
Definition: ad7779.c:190
ad7779_dev::gpio_sync_in
struct no_os_gpio_desc * gpio_sync_in
Definition: ad7779.h:254
ad7779_set_dclk_div
int32_t ad7779_set_dclk_div(ad7779_dev *dev, ad7779_dclk_div div)
Definition: ad7779.c:800
AD7779_CH0
@ AD7779_CH0
Definition: ad7779.h:161
ad7779_dev::dec_rate_dec
uint16_t dec_rate_dec
Definition: ad7779.h:263
AD7779_CH3
@ AD7779_CH3
Definition: ad7779.h:164
no_os_spi_remove
int32_t no_os_spi_remove(struct no_os_spi_desc *desc)
Free the resources allocated by no_os_spi_init().
Definition: no_os_spi.c:116
ad7779_do_single_sar_conv
int32_t ad7779_do_single_sar_conv(ad7779_dev *dev, ad7779_sar_mux mux, uint16_t *sar_code)
Definition: ad7779.c:1376
ad7779_set_spi_op_mode
int32_t ad7779_set_spi_op_mode(ad7779_dev *dev, ad7779_spi_op_mode mode)
Definition: ad7779.c:276
ad7779_pwr_mode
ad7779_pwr_mode
Definition: ad7779.h:194
no_os_gpio.h
Header file of GPIO Interface.
AD7779_CH6
@ AD7779_CH6
Definition: ad7779.h:167
ad7779_get_ref_buf_op_mode
int32_t ad7779_get_ref_buf_op_mode(ad7779_dev *dev, ad7779_refx_pin refx_pin, ad7779_ref_buf_op_mode *mode)
Definition: ad7779.c:1210
AD7779_REG_CH_CONFIG
#define AD7779_REG_CH_CONFIG(ch)
Definition: ad7779.h:48
ad7779_dev::spi_op_mode
ad7779_spi_op_mode spi_op_mode
Definition: ad7779.h:259
AD7779_CH_DISABLE
#define AD7779_CH_DISABLE(x)
Definition: ad7779.h:91
AD7779_REF1P_REF1N
@ AD7779_REF1P_REF1N
Definition: ad7779.h:220
ad7779_set_ref_buf_op_mode
int32_t ad7779_set_ref_buf_op_mode(ad7779_dev *dev, ad7779_refx_pin refx_pin, ad7779_ref_buf_op_mode mode)
Definition: ad7779.c:1134
AD7779_AREG1CAP_AVSSX_ATT
@ AD7779_AREG1CAP_AVSSX_ATT
Definition: ad7779.h:224
no_os_spi_init
int32_t no_os_spi_init(struct no_os_spi_desc **desc, const struct no_os_spi_init_param *param)
Initialize the SPI communication peripheral.
Definition: no_os_spi.c:52
ad7779_remove
int32_t ad7779_remove(ad7779_dev *dev)
Free the resources allocated by ad7779_init().
Definition: ad7779.c:1630
ad7779_set_gain
int32_t ad7779_set_gain(ad7779_dev *dev, ad7779_ch ch, ad7779_gain gain)
Definition: ad7779.c:512
ad7779_dev::read_from_cache
bool read_from_cache
Definition: ad7779.h:274
AD7779_GAIN_8
@ AD7779_GAIN_8
Definition: ad7779.h:180
ad7779_get_offset_corr
int32_t ad7779_get_offset_corr(ad7779_dev *dev, ad7779_ch ch, uint32_t *offset)
Definition: ad7779.c:984
ad7779_init
int32_t ad7779_init(ad7779_dev **device, ad7779_init_param init_param)
Definition: ad7779.c:1481
ad7779_spi_int_reg_read_mask
int32_t ad7779_spi_int_reg_read_mask(ad7779_dev *dev, uint8_t reg_addr, uint8_t mask, uint8_t *data)
Definition: ad7779.c:168
no_os_util.h
Header file of utility functions.
ad7779_ref_buf_op_mode
ad7779_ref_buf_op_mode
Definition: ad7779.h:211
ad7779_dev::gpio_dclk2
struct no_os_gpio_desc * gpio_dclk2
Definition: ad7779.h:253
AD7779_DCLK_CLK_DIV
#define AD7779_DCLK_CLK_DIV(x)
Definition: ad7779.h:117
ad7779_init_param
Definition: ad7779.h:278
ad7779_get_spi_op_mode
int32_t ad7779_get_spi_op_mode(ad7779_dev *dev, ad7779_spi_op_mode *mode)
Definition: ad7779.c:315
AD7779_SAR_CONV
@ AD7779_SAR_CONV
Definition: ad7779.h:157
ad7779_do_spi_soft_reset
int32_t ad7779_do_spi_soft_reset(ad7779_dev *dev)
Definition: ad7779.c:1404
ad7779_get_gain
int32_t ad7779_get_gain(ad7779_dev *dev, ad7779_ch ch, ad7779_gain *gain)
Definition: ad7779.c:557
AD7771_FILTER_MODE
#define AD7771_FILTER_MODE
Definition: ad7779.h:103
no_os_gpio_direction_output
int32_t no_os_gpio_direction_output(struct no_os_gpio_desc *desc, uint8_t value)
Enable the output direction of the specified GPIO.
Definition: no_os_gpio.c:147
AD7779_AREG2CAP_AVSSX_ATT
@ AD7779_AREG2CAP_AVSSX_ATT
Definition: ad7779.h:225
AD7779_DCLK_DIV_4
@ AD7779_DCLK_DIV_4
Definition: ad7779.h:186
AD7779_DCLK_DIV_16
@ AD7779_DCLK_DIV_16
Definition: ad7779.h:188
AD7779_REF_OUT_AVSSX
@ AD7779_REF_OUT_AVSSX
Definition: ad7779.h:222
AD7779_HIGH_RES
@ AD7779_HIGH_RES
Definition: ad7779.h:196
AD7779_CH4
@ AD7779_CH4
Definition: ad7779.h:165
AD7779_REG_BUFFER_CONFIG_1
#define AD7779_REG_BUFFER_CONFIG_1
Definition: ad7779.h:59
AD7779_REF_BUF_ENABLED
@ AD7779_REF_BUF_ENABLED
Definition: ad7779.h:212
AD7779_REF_MUX_CTRL
#define AD7779_REF_MUX_CTRL(x)
Definition: ad7779.h:120
ad7779_dev::gain_corr
uint32_t gain_corr[8]
Definition: ad7779.h:269
ad7779_get_sar_cfg
int32_t ad7779_get_sar_cfg(ad7779_dev *dev, ad7779_state *state, ad7779_sar_mux *mux)
Definition: ad7779.c:1319
AD7779_SAR_DIAG_MODE_EN
#define AD7779_SAR_DIAG_MODE_EN
Definition: ad7779.h:104
no_os_spi_init_param
Structure holding the parameters for SPI initialization.
Definition: no_os_spi.h:140