no-OS
channel_output_example.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef __CHANNEL_OUTPUT_EXAMPLE_H__
41 #define __CHANNEL_OUTPUT_EXAMPLE_H__
42 
43 /******************************************************************************/
44 /***************************** Include Files **********************************/
45 /******************************************************************************/
46 #include "ad5460.h"
47 #include "common_data.h"
48 #include "no_os_delay.h"
49 #include "no_os_gpio.h"
50 #include "no_os_print_log.h"
51 
52 /******************************************************************************/
53 /************************ Functions Declarations ******************************/
54 /******************************************************************************/
56 
57 #endif /* __CHANNEL_OUTPUT_EXAMPLE_H__ */
ad5460.h
Header file of AD5460 Driver.
ad5460_set_therm_rst
int ad5460_set_therm_rst(struct ad5460_desc *desc, bool enable)
Enable or disable the higher thermal reset.
Definition: ad5460.c:489
channel_output_example.h
Channel output example header for eval-ad5460 project.
ad5460_set_diag
int ad5460_set_diag(struct ad5460_desc *desc, uint32_t ch, enum ad5460_diag_mode diag_code)
Set which diagnostic value to be loaded in the DIAG_RESULT register.
Definition: ad5460.c:369
ad5460_desc
AD5460 device descriptor.
Definition: ad5460.h:352
ad5460_gpio_get
int ad5460_gpio_get(struct ad5460_desc *desc, uint32_t ch, uint8_t *val)
Get the GPO value for a specific channel.
Definition: ad5460.c:415
ad5460_live_status
Used to store the live status bit fields.
Definition: ad5460.h:326
AD5460_DAC_ACTIVE
#define AD5460_DAC_ACTIVE(x)
Definition: ad5460.h:61
no_os_delay.h
Header file of Delay functions.
AD5460_DIAG_NO_DIAG
@ AD5460_DIAG_NO_DIAG
Definition: ad5460.h:278
pr_info
#define pr_info(fmt, args...)
Definition: no_os_print_log.h:121
ad5460_ip
struct ad5460_init_param ad5460_ip
Definition: common_data.c:70
AD5460_VOLTAGE_OUT
@ AD5460_VOLTAGE_OUT
Definition: ad5460.h:214
no_os_print_log.h
Print messages helpers.
AD5460_STEP_0_8_PERCENT
@ AD5460_STEP_0_8_PERCENT
Definition: ad5460.h:249
channel_output_example_main
int channel_output_example_main()
Channel output example main execution.
Definition: channel_output_example.c:60
AD5460_LIN_RATE_4KHZ8
@ AD5460_LIN_RATE_4KHZ8
Definition: ad5460.h:259
ad5460_remove
int ad5460_remove(struct ad5460_desc *desc)
Free the device descriptor.
Definition: ad5460.c:613
channel_output_example_main
int channel_output_example_main()
Channel output example main execution.
Definition: channel_output_example.c:60
AD5460_VOUT_RANGE_0_12V
@ AD5460_VOUT_RANGE_0_12V
Definition: ad5460.h:224
ad5460_channel_config::function
enum ad5460_op_mode function
Definition: ad5460.h:343
AD5460_CURRENT_OUT_HART
@ AD5460_CURRENT_OUT_HART
Definition: ad5460.h:216
ad5460_set_channel_vout_range
int ad5460_set_channel_vout_range(struct ad5460_desc *desc, uint32_t ch, enum ad5460_vout_range vout_range)
Set the voltage range for a specific channel.
Definition: ad5460.c:291
AD5460_CURRENT_OUT
@ AD5460_CURRENT_OUT
Definition: ad5460.h:215
ad5460_dac_slew_enable
int ad5460_dac_slew_enable(struct ad5460_desc *desc, uint32_t ch, enum ad5460_slew_lin_step step, enum ad5460_lin_rate rate)
Configure and enable slew rate control for a DAC on a specific channel.
Definition: ad5460.c:449
AD5460_GPIO_SEL_GPI
@ AD5460_GPIO_SEL_GPI
Definition: ad5460.h:271
ad5460_dac_current_to_code
int ad5460_dac_current_to_code(struct ad5460_desc *desc, uint32_t uamps, uint16_t *code, uint32_t ch)
Convers a microamp value in the corresponding DAC 16 bit code.
Definition: ad5460.c:109
no_os_gpio.h
Header file of GPIO Interface.
ad5460_live_status::value
uint16_t value
Definition: ad5460.h:328
ad5460_set_channel_function
int ad5460_set_channel_function(struct ad5460_desc *desc, uint32_t ch, enum ad5460_op_mode ch_func)
Set the operation mode for a specific channel.
Definition: ad5460.c:261
ad5460_set_channel_dac_code
int ad5460_set_channel_dac_code(struct ad5460_desc *desc, uint32_t ch, uint16_t dac_code)
Set and load a code for the DAC on a specific channel.
Definition: ad5460.c:356
ad5460_get_live
int ad5460_get_live(struct ad5460_desc *desc, union ad5460_live_status *status)
Read the live status bits.
Definition: ad5460.c:435
ad5460_init
int ad5460_init(struct ad5460_desc **desc, struct ad5460_init_param *init_param)
Initialize the device structure.
Definition: ad5460.c:560
ad5460_dac_voltage_to_code
int ad5460_dac_voltage_to_code(struct ad5460_desc *desc, int32_t mvolts, uint16_t *code, uint32_t ch)
Converts a millivolt value in the corresponding DAC 16 bit code.
Definition: ad5460.c:74
ad5460_set_gpio_config
int ad5460_set_gpio_config(struct ad5460_desc *desc, uint32_t ch, enum ad5460_gpio_select config)
Set the GPIO operation mode.
Definition: ad5460.c:382
ad5460_reg_read
int ad5460_reg_read(struct ad5460_desc *desc, uint32_t addr, uint16_t *val)
Read a register's value.
Definition: ad5460.c:211
ad5460_desc::channel_configs
struct ad5460_channel_config channel_configs[AD5460_N_CHANNELS]
Definition: ad5460.h:356