no-OS
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
iio_trigger_example.c File Reference

Implementation of IIO trigger example for eval-adxl355-pmdz project. More...

#include "common_data.h"
#include "iio_app.h"
#include "parameters.h"
#include "iio_trigger.h"
#include "iio_adxl355.h"
Include dependency graph for iio_trigger_example.c:

Macros

#define DATA_BUFFER_SIZE   400
 
#define ADXL355_GPIO_TRIG_NAME   "adxl355-dev0"
 

Functions

int example_main ()
 IIO trigger example main execution.
 

Variables

uint8_t iio_data_buffer [DATA_BUFFER_SIZE *3 *sizeof(int)]
 
struct no_os_irq_init_param adxl355_gpio_irq_ip
 
struct iio_hw_trig_init_param adxl355_gpio_trig_ip
 

Detailed Description

Implementation of IIO trigger example for eval-adxl355-pmdz project.

Author
RBolboac (ramon.nosp@m.a.bo.nosp@m.lboac.nosp@m.a@an.nosp@m.alog..nosp@m.com)

Copyright 2022(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:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of Analog Devices, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

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.

Macro Definition Documentation

◆ ADXL355_GPIO_TRIG_NAME

#define ADXL355_GPIO_TRIG_NAME   "adxl355-dev0"

◆ DATA_BUFFER_SIZE

#define DATA_BUFFER_SIZE   400

Function Documentation

◆ example_main()

int example_main ( void )

IIO trigger example main execution.

Basic example main execution.

Returns
ret - Result of the example execution. If working correctly, will execute continuously function iio_app_run_with_trigs and will not return.

Set the threshold voltage to 5V

The comparator output will be available on the GPO_A pin

Set the DAC output on channel C to 5V

Measure input current on channel D

Initialize the ADC_RDY GPIO and associated IRQ event

Returns
0 if success, negative error code otherwise

Negative temperature

Positive temperature

Negative temperature

Positive temperature

Variable Documentation

◆ adxl355_gpio_irq_ip

struct no_os_irq_init_param adxl355_gpio_irq_ip
Initial value:
= {
.irq_ctrl_id = GPIO_IRQ_ID,
.platform_ops = GPIO_IRQ_OPS,
.extra = GPIO_IRQ_EXTRA,
}
#define GPIO_IRQ_EXTRA
Definition parameters.h:79
#define GPIO_IRQ_OPS
Definition parameters.h:77
#define GPIO_IRQ_ID
Definition parameters.h:42

◆ adxl355_gpio_trig_ip

struct iio_hw_trig_init_param adxl355_gpio_trig_ip
Initial value:
= {
.irq_trig_lvl = NO_OS_IRQ_EDGE_RISING,
.cb_info = {
.event = NO_OS_EVT_GPIO,
.peripheral = NO_OS_GPIO_IRQ,
},
}
#define ADXL355_GPIO_TRIG_NAME
Definition iio_trigger_example.c:51
#define ADXL355_GPIO_TRIG_IRQ_ID
Definition parameters.h:73
#define ADXL355_GPIO_CB_HANDLE
Definition parameters.h:74
@ NO_OS_IRQ_EDGE_RISING
Definition no_os_irq.h:73
@ NO_OS_EVT_GPIO
Definition no_os_irq.h:54
@ NO_OS_GPIO_IRQ
Definition no_os_irq.h:78

◆ iio_data_buffer

uint8_t iio_data_buffer[DATA_BUFFER_SIZE *3 *sizeof(int)]