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

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

#include "iio_adxl355.h"
#include "common_data.h"
#include "iio_app.h"
#include "lwip_socket.h"
#include "lwip_adin1110.h"
#include "adin1110.h"
Include dependency graph for iio_lwip_example.c:

Macros

#define DATA_BUFFER_SIZE   400
 

Functions

int example_main ()
 IIO example main execution.
 

Variables

uint8_t iio_data_buffer [DATA_BUFFER_SIZE *3 *sizeof(int)]
 
uint8_t adin1110_mac_address [6] = {0x00, 0x18, 0x80, 0x03, 0x25, 0x80}
 
const struct no_os_gpio_init_param adin1110_reset_ip
 
const struct no_os_spi_init_param adin1110_spi_ip
 
struct adin1110_init_param adin1110_ip
 

Detailed Description

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

Author
Ciprian Regus (cipri.nosp@m.an.r.nosp@m.egus@.nosp@m.anal.nosp@m.og.co.nosp@m.m)

Copyright 2023(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

◆ DATA_BUFFER_SIZE

#define DATA_BUFFER_SIZE   400

Function Documentation

◆ example_main()

int example_main ( void )

IIO example main execution.

Basic example main execution.

Returns
ret - Result of the example execution. If working correctly, will execute continuously function iio_app_run 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

◆ adin1110_ip

struct adin1110_init_param adin1110_ip
Initial value:
= {
.chip_type = ADIN1110,
.comm_param = adin1110_spi_ip,
.reset_param = adin1110_reset_ip,
.append_crc = false,
}
struct no_os_spi_init_param adin1110_spi_ip
Definition common_data.c:46
@ ADIN1110
Definition adin1110.h:197
const struct no_os_gpio_init_param adin1110_reset_ip
Definition iio_lwip_example.c:49

◆ adin1110_mac_address

uint8_t adin1110_mac_address[6] = {0x00, 0x18, 0x80, 0x03, 0x25, 0x80}

◆ adin1110_reset_ip

const struct no_os_gpio_init_param adin1110_reset_ip
Initial value:
= {
.pull = NO_OS_PULL_NONE,
.platform_ops = GPIO_OPS,
}
#define GPIO_OPS
Definition parameters.h:72
struct stm32_gpio_init_param adin1110_reset_gpio_extra_ip
Definition parameters.c:48
#define ADIN1110_GPIO_RESET_PORT
Definition parameters.h:88
#define ADIN1110_GPIO_RESET_PIN
Definition parameters.h:89
@ NO_OS_PULL_NONE
Definition no_os_gpio.h:54

◆ adin1110_spi_ip

const struct no_os_spi_init_param adin1110_spi_ip
Initial value:
= {
.device_id = ADIN1110_SPI_DEVICE_ID,
.max_speed_hz = ADIN1110_SPI_CLK_RATE,
.platform_ops = SPI_OPS,
.chip_select = ADIN1110_SPI_CS,
}
#define SPI_OPS
Definition parameters.h:68
struct max_spi_init_param adin1110_spi_extra_ip
Definition parameters.c:41
#define ADIN1110_SPI_DEVICE_ID
Definition parameters.h:90
#define ADIN1110_SPI_CS
Definition parameters.h:91
#define ADIN1110_SPI_CLK_RATE
Definition parameters.h:93
@ NO_OS_SPI_BIT_ORDER_MSB_FIRST
Definition no_os_spi.h:64
@ NO_OS_SPI_MODE_0
Definition no_os_spi.h:49

◆ iio_data_buffer

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