Go to the documentation of this file.
92 #define AD5791_RESET_OUT no_os_gpio_direction_output(dev->gpio_reset, \
94 #define AD5791_RESET_LOW no_os_gpio_set_value(dev->gpio_reset, \
96 #define AD5791_RESET_HIGH no_os_gpio_set_value(dev->gpio_reset, \
99 #define AD5791_CLR_OUT no_os_gpio_direction_output(dev->gpio_clr, \
101 #define AD5791_CLR_LOW no_os_gpio_set_value(dev->gpio_clr, \
103 #define AD5791_CLR_HIGH no_os_gpio_set_value(dev->gpio_clr, \
106 #define AD5791_LDAC_OUT no_os_gpio_direction_output(dev->gpio_ldac, \
108 #define AD5791_LDAC_LOW no_os_gpio_set_value(dev->gpio_ldac, \
110 #define AD5791_LDAC_HIGH no_os_gpio_set_value(dev->gpio_ldac, \
118 #define MAX_RESOLUTION 20
121 #define AD5791_NOP 0 // No operation (NOP).
122 #define AD5791_REG_DAC 1 // DAC register.
123 #define AD5791_REG_CTRL 2 // Control register.
124 #define AD5791_REG_CLR_CODE 3 // Clearcode register.
125 #define AD5791_CMD_WR_SOFT_CTRL 4 // Software control register(Write only).
128 #define AD5791_READ (1ul << 23)
129 #define AD5791_WRITE (0ul << 23)
130 #define AD5791_ADDR_REG(x) (((uint32_t)(x) & 0x7) << 20)
133 #define AD5791_CTRL_LINCOMP(x) (((x) & 0xF) << 6) // Linearity error compensation.
134 #define AD5791_CTRL_SDODIS (1 << 5) // SDO pin enable/disable control.
135 #define AD5791_CTRL_BIN2SC (1 << 4) // DAC register coding selection.
136 #define AD5791_CTRL_DACTRI (1 << 3) // DAC tristate control.
137 #define AD5791_CTRL_OPGND (1 << 2) // Output ground clamp control.
138 #define AD5791_CTRL_RBUF (1 << 1) // Output amplifier configuration control.
141 #define AD5791_SOFT_CTRL_RESET (1 << 2) // RESET function.
142 #define AD5791_SOFT_CTRL_CLR (1 << 1) // CLR function.
143 #define AD5791_SOFT_CTRL_LDAC (1 << 0) // LDAC function.
146 #define AD5791_OUT_NORMAL 0x0
147 #define AD5791_OUT_CLAMPED_6K 0x1
148 #define AD5791_OUT_TRISTATE 0x2
163 uint8_t register_address,
164 uint32_t register_value);
168 uint8_t register_address,
181 uint8_t instruction_bit);
186 uint32_t setup_word);
Structure holding the parameters for GPIO initialization.
Definition: no_os_gpio.h:85
#define AD5791_REG_DAC
Definition: ad5791.h:122
#define AD5791_LDAC_HIGH
Definition: ad5791.h:110
int32_t ad5791_soft_instruction(struct ad5791_dev *dev, uint8_t instruction_bit)
Asserts RESET, CLR or LDAC in a software manner.
Definition: ad5791.c:287
struct no_os_gpio_desc * gpio_clr
Definition: ad5791.h:72
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:95
Header file of SPI Interface.
@ ID_AD5760
Definition: ad5791.h:56
int32_t ad5791_soft_instruction(struct ad5791_dev *dev, uint8_t instruction_bit)
Asserts RESET, CLR or LDAC in a software manner.
Definition: ad5791.c:287
#define AD5791_LDAC_LOW
Definition: ad5791.h:108
Header file of AD5791 Driver.
int32_t ad5791_set_dac_value(struct ad5791_dev *dev, uint32_t value)
Writes to the DAC register.
Definition: ad5791.c:260
ad5791_type
Definition: ad5791.h:55
Header file of Delay functions.
int32_t ad5791_set_dac_value(struct ad5791_dev *dev, uint32_t value)
Writes to the DAC register.
Definition: ad5791.c:260
#define AD5791_CTRL_DACTRI
Definition: ad5791.h:136
#define AD5791_WRITE
Definition: ad5791.h:129
int32_t ad5791_init(struct ad5791_dev **device, struct ad5791_init_param init_param)
Initializes the communication with the device.
Definition: ad5791.c:80
Definition: ad9361_util.h:75
enum ad5791_type act_device
Definition: ad5791.h:86
#define AD5791_CTRL_BIN2SC
Definition: ad5791.h:135
#define AD5791_CTRL_OPGND
Definition: ad5791.h:137
@ ID_AD5791
Definition: ad5791.h:60
int32_t ad5791_get_register_value(struct ad5791_dev *dev, uint8_t register_address, uint32_t *value)
Reads the value of a register.
Definition: ad5791.c:185
void no_os_mdelay(uint32_t msecs)
Wait until msecs milliseconds passed.
Definition: aducm3029_delay.c:132
int32_t ad5791_remove(struct ad5791_dev *dev)
Free the resources allocated by ad5791_init().
Definition: ad5791.c:118
struct no_os_gpio_init_param gpio_ldac
Definition: ad5791.h:84
int32_t ad5791_get_register_value(struct ad5791_dev *dev, uint8_t register_address, uint32_t *value)
Reads the value of a register.
Definition: ad5791.c:185
#define AD5791_CMD_WR_SOFT_CTRL
Definition: ad5791.h:125
int32_t ad5791_init(struct ad5791_dev **device, struct ad5791_init_param init_param)
Initializes the communication with the device.
Definition: ad5791.c:80
int32_t ad5791_setup(struct ad5791_dev *dev, uint32_t setup_word)
Configures the output amplifier, DAC coding, SDO state and the linearity error compensation.
Definition: ad5791.c:319
#define AD5791_CTRL_RBUF
Definition: ad5791.h:138
int32_t ad5791_dac_ouput_state(struct ad5791_dev *dev, uint8_t state)
Sets the DAC output in one of the three states.
Definition: ad5791.c:227
#define AD5791_CLR_HIGH
Definition: ad5791.h:103
enum ad5791_type act_device
Definition: ad5791.h:75
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:110
Structure holding SPI descriptor.
Definition: no_os_spi.h:143
Structure holding the GPIO descriptor.
Definition: no_os_gpio.h:102
#define AD5791_CTRL_LINCOMP(x)
Definition: ad5791.h:133
struct no_os_spi_desc * spi_desc
Definition: ad5791.h:69
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:55
void * no_os_malloc(size_t size)
#define AD5791_ADDR_REG(x)
Definition: ad5791.h:130
uint32_t resolution
Definition: ad5791.h:64
@ ID_AD5790
Definition: ad5791.h:59
void no_os_free(void *ptr)
int32_t ad5791_set_register_value(struct ad5791_dev *dev, uint8_t register_address, uint32_t register_value)
Writes data into a register.
Definition: ad5791.c:147
int32_t ad5791_setup(struct ad5791_dev *dev, uint32_t setup_word)
Configures the output amplifier, DAC coding, SDO state and the linearity error compensation.
Definition: ad5791.c:319
int32_t ad5791_set_register_value(struct ad5791_dev *dev, uint8_t register_address, uint32_t register_value)
Writes data into a register.
Definition: ad5791.c:147
struct ad7616_init_param init_param
Definition: ad7616_sdz.c:96
#define AD5791_CTRL_SDODIS
Definition: ad5791.h:134
#define AD5791_RESET_HIGH
Definition: ad5791.h:96
@ ID_AD5780
Definition: ad5791.h:57
int32_t ad5791_remove(struct ad5791_dev *dev)
Free the resources allocated by ad5791_init().
Definition: ad5791.c:118
struct no_os_gpio_desc * gpio_reset
Definition: ad5791.h:71
#define MAX_RESOLUTION
Definition: ad5446.c:51
#define AD5791_READ
Definition: ad5791.h:128
#define AD5791_CLR_OUT
Definition: ad5791.h:99
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:77
struct no_os_spi_init_param spi_init
Definition: ad5791.h:80
Header file of GPIO Interface.
struct no_os_gpio_desc * gpio_ldac
Definition: ad5791.h:73
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:51
#define AD5791_RESET_OUT
Definition: ad5791.h:92
int32_t ad5791_dac_ouput_state(struct ad5791_dev *dev, uint8_t state)
Sets the DAC output in one of the three states.
Definition: ad5791.c:227
@ ID_AD5781
Definition: ad5791.h:58
#define AD5791_REG_CTRL
Definition: ad5791.h:123
#define AD5791_LDAC_OUT
Definition: ad5791.h:106
struct no_os_gpio_init_param gpio_reset
Definition: ad5791.h:82
struct no_os_gpio_init_param gpio_clr
Definition: ad5791.h:83
Structure holding the parameters for SPI initialization.
Definition: no_os_spi.h:121