no-OS
ad5791.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef __AD5791_H__
41 #define __AD5791_H__
42 
43 /******************************************************************************/
44 /***************************** Include Files **********************************/
45 /******************************************************************************/
46 #include <stdint.h>
47 #include "no_os_delay.h"
48 #include "no_os_gpio.h"
49 #include "no_os_spi.h"
50 #include "no_os_util.h"
51 #include "no_os_error.h"
52 
53 /******************************************************************************/
54 /*************************** Types Declarations *******************************/
55 /******************************************************************************/
56 /* Supported devices */
63 };
64 
65 /* Possible voltage spans for linearity error compensation */
73 };
74 
76  uint32_t resolution;
77 };
78 
79 struct ad5791_dev {
80  /* SPI */
82  /* GPIO */
86  /* Device Settings */
88 };
89 
91  /* SPI */
93  /* GPIO */
97  /* Device Settings */
99 };
100 
101 /******************************************************************************/
102 /*********************************** GPIO *************************************/
103 /******************************************************************************/
104 #define AD5791_RESET_OUT no_os_gpio_direction_output(dev->gpio_reset, \
105  NO_OS_GPIO_HIGH);
106 #define AD5791_RESET_LOW no_os_gpio_set_value(dev->gpio_reset, \
107  NO_OS_GPIO_LOW)
108 #define AD5791_RESET_HIGH no_os_gpio_set_value(dev->gpio_reset, \
109  NO_OS_GPIO_HIGH)
110 
111 #define AD5791_CLR_OUT no_os_gpio_direction_output(dev->gpio_clr, \
112  NO_OS_GPIO_HIGH);
113 #define AD5791_CLR_LOW no_os_gpio_set_value(dev->gpio_clr, \
114  NO_OS_GPIO_LOW)
115 #define AD5791_CLR_HIGH no_os_gpio_set_value(dev->gpio_clr, \
116  NO_OS_GPIO_HIGH)
117 
118 #define AD5791_LDAC_OUT no_os_gpio_direction_output(dev->gpio_ldac, \
119  NO_OS_GPIO_HIGH);
120 #define AD5791_LDAC_LOW no_os_gpio_set_value(dev->gpio_ldac, \
121  NO_OS_GPIO_LOW)
122 #define AD5791_LDAC_HIGH no_os_gpio_set_value(dev->gpio_ldac, \
123  NO_OS_GPIO_HIGH)
124 
125 /******************************************************************************/
126 /********************************** AD5791 ************************************/
127 /******************************************************************************/
128 
129 /* Maximum resolution */
130 #define MAX_RESOLUTION 20
131 
132 /* Register Map */
133 #define AD5791_NOP 0 // No operation (NOP).
134 #define AD5791_REG_DAC 1 // DAC register.
135 #define AD5791_REG_CTRL 2 // Control register.
136 #define AD5791_REG_CLR_CODE 3 // Clearcode register.
137 #define AD5791_CMD_WR_SOFT_CTRL 4 // Software control register(Write only).
138 
139 /* Input Shift Register bit definition. */
140 #define AD5791_READ (1ul << 23)
141 #define AD5791_WRITE (0ul << 23)
142 #define AD5791_ADDR_REG(x) (((uint32_t)(x) & 0x7) << 20)
143 
144 /* Control Register bit Definition */
145 #define AD5791_CTRL_LINCOMP_MASK NO_OS_GENMASK(9,6) // Linearity error compensation.
146 #define AD5791_CTRL_LINCOMP(x) (((x) & 0xF) << 6)
147 #define AD5791_CTRL_SDODIS_MASK NO_OS_BIT(5) // SDO pin enable/disable control.
148 #define AD5791_CTRL_SDODIS(x) ((x & 0x01) << 5)
149 #define AD5791_CTRL_BIN2SC_MASK NO_OS_BIT(4) // DAC register coding selection.
150 #define AD5791_CTRL_BIN2SC(x) ((x & 0x01) << 4)
151 #define AD5791_CTRL_DACTRI NO_OS_BIT(3) // DAC tristate control.
152 #define AD5791_CTRL_OPGND NO_OS_BIT(2) // Output ground clamp control.
153 #define AD5791_CTRL_RBUF_MASK NO_OS_BIT(1) // Output amplifier configuration control.
154 #define AD5791_CTRL_RBUF(x) ((x & 0x01) << 1)
155 
156 /* Software Control Register bit definition */
157 #define AD5791_SOFT_CTRL_RESET (1 << 2) // RESET function.
158 #define AD5791_SOFT_CTRL_CLR (1 << 1) // CLR function.
159 #define AD5791_SOFT_CTRL_LDAC (1 << 0) // LDAC function.
160 
161 /* DAC OUTPUT STATES */
162 #define AD5791_OUT_NORMAL 0x0
163 #define AD5791_OUT_CLAMPED_6K 0x1
164 #define AD5791_OUT_TRISTATE 0x2
165 
166 /******************************************************************************/
167 /************************ Functions Declarations ******************************/
168 /******************************************************************************/
169 
171 int32_t ad5791_init(struct ad5791_dev **device,
173 
175 int32_t ad5791_remove(struct ad5791_dev *dev);
176 
178 int32_t ad5791_set_register_value(struct ad5791_dev *dev,
179  uint8_t register_address,
180  uint32_t register_value);
181 
183 int32_t ad5791_get_register_value(struct ad5791_dev *dev,
184  uint8_t register_address,
185  uint32_t *value);
186 
188 int32_t ad5791_dac_ouput_state(struct ad5791_dev *dev,
189  uint8_t state);
190 
192 int32_t ad5791_set_dac_value(struct ad5791_dev *dev,
193  uint32_t value);
194 
196 int32_t ad5791_soft_instruction(struct ad5791_dev *dev,
197  uint8_t instruction_bit);
198 
201 int32_t ad5791_setup(struct ad5791_dev *dev,
202  uint32_t setup_word);
203 
205 int ad5791_spi_write_mask(struct ad5791_dev *dev,
206  uint8_t register_address,
207  uint32_t mask,
208  uint32_t value);
209 
211 int ad5791_set_lin_comp(struct ad5791_dev *dev,
212  enum ad5791_lin_comp_select v_span);
213 
215 int ad5791_ldac_trigger(struct ad5791_dev *dev);
216 
218 int ad5791_clear_async(struct ad5791_dev *dev);
219 
220 #endif /* __AD5791_H__ */
no_os_alloc.h
no_os_gpio_init_param
Structure holding the parameters for GPIO initialization.
Definition: no_os_gpio.h:85
AD5791_REG_DAC
#define AD5791_REG_DAC
Definition: ad5791.h:134
AD5791_LDAC_HIGH
#define AD5791_LDAC_HIGH
Definition: ad5791.h:122
AD5791_SPAN_19V_TO_20V
@ AD5791_SPAN_19V_TO_20V
Definition: ad5791.h:72
AD5781_SPAN_10V_TO_20V
@ AD5781_SPAN_10V_TO_20V
Definition: ad5791.h:68
AD5791_CTRL_RBUF_MASK
#define AD5791_CTRL_RBUF_MASK
Definition: ad5791.h:153
ad5791_soft_instruction
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
ad5791_dev::gpio_clr
struct no_os_gpio_desc * gpio_clr
Definition: ad5791.h:84
ad5791_spi_write_mask
int ad5791_spi_write_mask(struct ad5791_dev *dev, uint8_t register_address, uint32_t mask, uint32_t value)
SPI write to device using a mask.
Definition: ad5791.c:363
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:165
ad5791_init_param
Definition: ad5791.h:90
no_os_spi.h
Header file of SPI Interface.
ID_AD5760
@ ID_AD5760
Definition: ad5791.h:58
ad5791_soft_instruction
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
AD5791_LDAC_LOW
#define AD5791_LDAC_LOW
Definition: ad5791.h:120
ad5791.h
Header file of AD5791 Driver.
ad5791_set_dac_value
int32_t ad5791_set_dac_value(struct ad5791_dev *dev, uint32_t value)
Writes to the DAC register.
Definition: ad5791.c:260
ad5791_type
ad5791_type
Definition: ad5791.h:57
no_os_delay.h
Header file of Delay functions.
ad5791_clear_async
int ad5791_clear_async(struct ad5791_dev *dev)
Clear DAC channel output with the clearcode.
Definition: ad5791.c:454
AD5791_SPAN_16V_TO_19V
@ AD5791_SPAN_16V_TO_19V
Definition: ad5791.h:71
ad5791_set_dac_value
int32_t ad5791_set_dac_value(struct ad5791_dev *dev, uint32_t value)
Writes to the DAC register.
Definition: ad5791.c:260
AD5791_CTRL_DACTRI
#define AD5791_CTRL_DACTRI
Definition: ad5791.h:151
AD5791_WRITE
#define AD5791_WRITE
Definition: ad5791.h:141
ad5791_init
int32_t ad5791_init(struct ad5791_dev **device, struct ad5791_init_param init_param)
Initializes the communication with the device.
Definition: ad5791.c:80
AD5791_SPAN_12V_TO_16V
@ AD5791_SPAN_12V_TO_16V
Definition: ad5791.h:70
device
Definition: ad9361_util.h:75
ad5791_init_param::act_device
enum ad5791_type act_device
Definition: ad5791.h:98
NO_OS_GPIO_HIGH
@ NO_OS_GPIO_HIGH
Definition: no_os_gpio.h:123
ad5791_ldac_trigger
int ad5791_ldac_trigger(struct ad5791_dev *dev)
Trigger LDAC.
Definition: ad5791.c:426
AD5791_CTRL_OPGND
#define AD5791_CTRL_OPGND
Definition: ad5791.h:152
ID_AD5791
@ ID_AD5791
Definition: ad5791.h:62
NO_OS_GPIO_LOW
@ NO_OS_GPIO_LOW
Definition: no_os_gpio.h:121
AD5791_CTRL_LINCOMP_MASK
#define AD5791_CTRL_LINCOMP_MASK
Definition: ad5791.h:145
ad5791_get_register_value
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
no_os_mdelay
void no_os_mdelay(uint32_t msecs)
Wait until msecs milliseconds passed.
Definition: aducm3029_delay.c:132
ad5791_remove
int32_t ad5791_remove(struct ad5791_dev *dev)
Free the resources allocated by ad5791_init().
Definition: ad5791.c:118
no_os_error.h
Error codes definition.
ad5791_init_param::gpio_ldac
struct no_os_gpio_init_param gpio_ldac
Definition: ad5791.h:96
ad5791_get_register_value
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
AD5791_CMD_WR_SOFT_CTRL
#define AD5791_CMD_WR_SOFT_CTRL
Definition: ad5791.h:137
ad5791_ldac_trigger
int ad5791_ldac_trigger(struct ad5791_dev *dev)
Trigger LDAC.
Definition: ad5791.c:426
AD5791_SOFT_CTRL_CLR
#define AD5791_SOFT_CTRL_CLR
Definition: ad5791.h:158
ad5791_init
int32_t ad5791_init(struct ad5791_dev **device, struct ad5791_init_param init_param)
Initializes the communication with the device.
Definition: ad5791.c:80
AD5791_CTRL_BIN2SC_MASK
#define AD5791_CTRL_BIN2SC_MASK
Definition: ad5791.h:149
ad5791_setup
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
ad5791_dac_ouput_state
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
AD5791_CLR_HIGH
#define AD5791_CLR_HIGH
Definition: ad5791.h:115
ad5791_dev::act_device
enum ad5791_type act_device
Definition: ad5791.h:87
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:110
no_os_spi_desc
Structure holding SPI descriptor.
Definition: no_os_spi.h:177
no_os_gpio_desc
Structure holding the GPIO descriptor.
Definition: no_os_gpio.h:102
AD5781_SPAN_UPTO_10V
@ AD5781_SPAN_UPTO_10V
Definition: ad5791.h:67
AD5791_CTRL_LINCOMP
#define AD5791_CTRL_LINCOMP(x)
Definition: ad5791.h:146
ad5791_dev::spi_desc
struct no_os_spi_desc * spi_desc
Definition: ad5791.h:81
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:55
no_os_malloc
void * no_os_malloc(size_t size)
Allocate memory and return a pointer to it.
Definition: chibios_alloc.c:49
ad5791_lin_comp_select
ad5791_lin_comp_select
Definition: ad5791.h:66
AD5791_ADDR_REG
#define AD5791_ADDR_REG(x)
Definition: ad5791.h:142
ad5791_spi_write_mask
int ad5791_spi_write_mask(struct ad5791_dev *dev, uint8_t register_address, uint32_t mask, uint32_t value)
SPI write to device using a mask.
Definition: ad5791.c:363
AD5791_SOFT_CTRL_LDAC
#define AD5791_SOFT_CTRL_LDAC
Definition: ad5791.h:159
ad5791_chip_info::resolution
uint32_t resolution
Definition: ad5791.h:76
ID_AD5790
@ ID_AD5790
Definition: ad5791.h:61
NO_OS_BIT
#define NO_OS_BIT(x)
Definition: no_os_util.h:51
ad5791_dev
Definition: ad5791.h:79
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:75
ad5791_set_register_value
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
ad5791_setup
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
no_os_udelay
void no_os_udelay(uint32_t usecs)
Wait until usecs microseconds passed.
Definition: aducm3029_delay.c:120
ad5791_set_lin_comp
int ad5791_set_lin_comp(struct ad5791_dev *dev, enum ad5791_lin_comp_select v_span)
Set Linearity error compensation based on the reference voltage span.
Definition: ad5791.c:391
ad5791_set_register_value
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
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:203
init_param
struct ad7616_init_param init_param
Definition: ad7616_sdz.c:119
AD5791_RESET_HIGH
#define AD5791_RESET_HIGH
Definition: ad5791.h:108
ID_AD5780
@ ID_AD5780
Definition: ad5791.h:59
ad5791_remove
int32_t ad5791_remove(struct ad5791_dev *dev)
Free the resources allocated by ad5791_init().
Definition: ad5791.c:118
ad5791_dev::gpio_reset
struct no_os_gpio_desc * gpio_reset
Definition: ad5791.h:83
MAX_RESOLUTION
#define MAX_RESOLUTION
Definition: ad5446.c:51
AD5791_CTRL_SDODIS_MASK
#define AD5791_CTRL_SDODIS_MASK
Definition: ad5791.h:147
ad5791_clear_async
int ad5791_clear_async(struct ad5791_dev *dev)
Clear DAC channel output with the clearcode.
Definition: ad5791.c:454
AD5791_READ
#define AD5791_READ
Definition: ad5791.h:140
AD5791_CLR_OUT
#define AD5791_CLR_OUT
Definition: ad5791.h:111
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:122
ad5791_init_param::spi_init
struct no_os_spi_init_param spi_init
Definition: ad5791.h:92
AD5791_SPAN_10V_TO_12V
@ AD5791_SPAN_10V_TO_12V
Definition: ad5791.h:69
no_os_gpio.h
Header file of GPIO Interface.
ad5791_dev::gpio_ldac
struct no_os_gpio_desc * gpio_ldac
Definition: ad5791.h:85
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:58
ad5791_set_lin_comp
int ad5791_set_lin_comp(struct ad5791_dev *dev, enum ad5791_lin_comp_select v_span)
Set Linearity error compensation based on the reference voltage span.
Definition: ad5791.c:391
no_os_util.h
Header file of utility functions.
AD5791_RESET_OUT
#define AD5791_RESET_OUT
Definition: ad5791.h:104
ad5791_chip_info
Definition: ad5791.h:75
ad5791_dac_ouput_state
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
@ ID_AD5781
Definition: ad5791.h:60
AD5791_REG_CTRL
#define AD5791_REG_CTRL
Definition: ad5791.h:135
AD5791_LDAC_OUT
#define AD5791_LDAC_OUT
Definition: ad5791.h:118
ad5791_init_param::gpio_reset
struct no_os_gpio_init_param gpio_reset
Definition: ad5791.h:94
ad5791_init_param::gpio_clr
struct no_os_gpio_init_param gpio_clr
Definition: ad5791.h:95
no_os_spi_init_param
Structure holding the parameters for SPI initialization.
Definition: no_os_spi.h:131