no-OS
|
ADPD188 driver implementation. More...
#include <stdlib.h>
#include "adpd188.h"
#include "no_os_error.h"
#include "no_os_delay.h"
#include "no_os_alloc.h"
Functions | |
int32_t | adpd188_init (struct adpd188_dev **device, struct adpd188_init_param *init_param) |
Initialize the ADPD188 driver. More... | |
int32_t | adpd188_remove (struct adpd188_dev *dev) |
Free resources allocated by adpd188_init(). More... | |
int32_t | adpd188_reg_read (struct adpd188_dev *dev, uint8_t reg_addr, uint16_t *reg_val) |
Read one 16 bit register of the ADPD188. More... | |
int32_t | adpd188_reg_write (struct adpd188_dev *dev, uint8_t reg_addr, uint16_t reg_val) |
Write one 16 bit register of the ADPD188. More... | |
int32_t | adpd188_mode_get (struct adpd188_dev *dev, enum adpd188_mode *mode) |
Get the mode of operation of the ADPD188. More... | |
int32_t | adpd188_mode_set (struct adpd188_dev *dev, enum adpd188_mode new_mode) |
Set the mode of operation of the ADPD188. More... | |
int32_t | adpd188_fifo_status_get (struct adpd188_dev *dev, uint8_t *bytes_no) |
Get the number of bytes currently present in FIFO. More... | |
int32_t | adpd188_fifo_clear (struct adpd188_dev *dev) |
Empty the FIFO. More... | |
int32_t | adpd188_fifo_thresh_set (struct adpd188_dev *dev, uint8_t word_no) |
Set the number of 16 bit words that need to be in the FIFO to trigger an interrupt. More... | |
int32_t | adpd188_interrupt_get (struct adpd188_dev *dev, uint8_t *flags) |
Get the slot and FIFO interrupt flags. More... | |
int32_t | adpd188_interrupt_clear (struct adpd188_dev *dev, uint8_t flags) |
Clear the slot and FIFO interrupt flags. More... | |
int32_t | adpd188_interrupt_en (struct adpd188_dev *dev, uint8_t flags) |
Enable the slot and FIFO interrupt flags. More... | |
int32_t | adpd188_gpio_setup (struct adpd188_dev *dev, struct adpd188_gpio_config config) |
Setup drive and polarity of the GPIOs. Also enable GPIO if necessary. More... | |
int32_t | adpd188_gpio_alt_setup (struct adpd188_dev *dev, uint8_t gpio_id, enum adpd188_gpio_alt_config config) |
Setup the GPIO source. More... | |
int32_t | adpd188_sw_reset (struct adpd188_dev *dev) |
Do software reset of the device. More... | |
int32_t | adpd188_clk32mhz_cal (struct adpd188_dev *dev) |
Do internal 32MHz clock calibration. This calibration requires the 32kHz clock to be calibrated first. The 32kHz calibration needs an external reference. More... | |
int32_t | adpd188_slot_setup (struct adpd188_dev *dev, struct adpd188_slot_config config) |
Enable slot and setup its FIFO interaction. More... | |
int32_t | adpd188_adc_fsample_set (struct adpd188_dev *dev, uint16_t freq_hz) |
Set sample frequency of the ADC. More... | |
int32_t | adpd188_adc_fsample_get (struct adpd188_dev *dev, uint16_t *freq_hz) |
Get sample frequency of the ADC. More... | |
int32_t | adpd188_smoke_detect_setup (struct adpd188_dev *dev) |
Do initial configuration of the device to use as a smoke detector. The configuration is described in the datasheet. More... | |
ADPD188 driver implementation.
Copyright 2019(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int32_t adpd188_adc_fsample_get | ( | struct adpd188_dev * | dev, |
uint16_t * | freq_hz | ||
) |
Get sample frequency of the ADC.
dev | - The ADPD188 descriptor. |
freq_hz | - ADC sample frequency. |
int32_t adpd188_adc_fsample_set | ( | struct adpd188_dev * | dev, |
uint16_t | freq_hz | ||
) |
Set sample frequency of the ADC.
dev | - The ADPD188 descriptor. |
freq_hz | - Desired ADC sample frequency. |
int32_t adpd188_clk32mhz_cal | ( | struct adpd188_dev * | dev | ) |
Do internal 32MHz clock calibration. This calibration requires the 32kHz clock to be calibrated first. The 32kHz calibration needs an external reference.
dev | - The ADPD188 descriptor. |
int32_t adpd188_fifo_clear | ( | struct adpd188_dev * | dev | ) |
Empty the FIFO.
dev | - The ADPD188 descriptor. |
int32_t adpd188_fifo_status_get | ( | struct adpd188_dev * | dev, |
uint8_t * | bytes_no | ||
) |
Get the number of bytes currently present in FIFO.
dev | - The ADPD188 descriptor. |
bytes_no | - Number of bytes in the FIFO. |
int32_t adpd188_fifo_thresh_set | ( | struct adpd188_dev * | dev, |
uint8_t | word_no | ||
) |
Set the number of 16 bit words that need to be in the FIFO to trigger an interrupt.
dev | - The ADPD188 descriptor. |
word_no | - Number of words that trigger an interrupt. |
int32_t adpd188_gpio_alt_setup | ( | struct adpd188_dev * | dev, |
uint8_t | gpio_id, | ||
enum adpd188_gpio_alt_config | config | ||
) |
Setup the GPIO source.
dev | - The ADPD188 descriptor. |
gpio_id | - ID of the GPIO (0 or 1). |
config | - ID of the source of the GPIO. |
int32_t adpd188_gpio_setup | ( | struct adpd188_dev * | dev, |
struct adpd188_gpio_config | config | ||
) |
Setup drive and polarity of the GPIOs. Also enable GPIO if necessary.
dev | - The ADPD188 descriptor. |
config | - Configuration structure of the GPIO. |
int32_t adpd188_init | ( | struct adpd188_dev ** | device, |
struct adpd188_init_param * | init_param | ||
) |
Initialize the ADPD188 driver.
device | - The ADPD188 descriptor. |
init_param | - The structure that contains the ADPD188 initialization parameters. |
int32_t adpd188_interrupt_clear | ( | struct adpd188_dev * | dev, |
uint8_t | flags | ||
) |
Clear the slot and FIFO interrupt flags.
dev | - The ADPD188 descriptor. |
flags | - The ORed value of the flags that need to be cleared. If no interrupt needs to be cleared the value will be zero. Otherwise do a logical OR between the flags that need to be cleared:
|
int32_t adpd188_interrupt_en | ( | struct adpd188_dev * | dev, |
uint8_t | flags | ||
) |
Enable the slot and FIFO interrupt flags.
dev | - The ADPD188 descriptor. |
flags | - The ORed value of the flags that need to be enabled. If no interrupt needs to be enabled the value will be zero. Otherwise do a logical OR between the flags that need to be enabled:
|
int32_t adpd188_interrupt_get | ( | struct adpd188_dev * | dev, |
uint8_t * | flags | ||
) |
Get the slot and FIFO interrupt flags.
dev | - The ADPD188 descriptor. |
flags | - The ORed value of the flags. If no interrupt has triggered the value will be zero. Otherwise it can be a logical OR between:
|
int32_t adpd188_mode_get | ( | struct adpd188_dev * | dev, |
enum adpd188_mode * | mode | ||
) |
Get the mode of operation of the ADPD188.
dev | - The ADPD188 descriptor. |
mode | - The cur mode of operation. Values can be:
|
int32_t adpd188_mode_set | ( | struct adpd188_dev * | dev, |
enum adpd188_mode | new_mode | ||
) |
Set the mode of operation of the ADPD188.
dev | - The ADPD188 descriptor. |
new_mode | - The new mode of operation. Values can be:
|
int32_t adpd188_reg_read | ( | struct adpd188_dev * | dev, |
uint8_t | reg_addr, | ||
uint16_t * | reg_val | ||
) |
Read one 16 bit register of the ADPD188.
dev | - The ADPD188 descriptor. |
reg_addr | - The register address. |
reg_val | - Value of the read register. |
Store read values starting with the second place in the buffer to have the value in the same spaces as in the SPI case. This way the register value can be compiled only once outside the if clause.
int32_t adpd188_reg_write | ( | struct adpd188_dev * | dev, |
uint8_t | reg_addr, | ||
uint16_t | reg_val | ||
) |
Write one 16 bit register of the ADPD188.
dev | - The ADPD188 descriptor. |
reg_addr | - The register address. |
reg_val | - The new value of the register. |
int32_t adpd188_remove | ( | struct adpd188_dev * | dev | ) |
Free resources allocated by adpd188_init().
dev | - The ADPD188 descriptor. |
int32_t adpd188_slot_setup | ( | struct adpd188_dev * | dev, |
struct adpd188_slot_config | config | ||
) |
Enable slot and setup its FIFO interaction.
dev | - The ADPD188 descriptor. |
config | - Configuration structure for the slot. |
int32_t adpd188_smoke_detect_setup | ( | struct adpd188_dev * | dev | ) |
Do initial configuration of the device to use as a smoke detector. The configuration is described in the datasheet.
dev | - The ADPD188 descriptor. |
int32_t adpd188_sw_reset | ( | struct adpd188_dev * | dev | ) |
Do software reset of the device.
dev | - The ADPD188 descriptor. |