no-OS
Variables
common_data.c File Reference

Defines common data to be used by iio_demo_freeRTOS examples. More...

#include "common_data.h"
Include dependency graph for common_data.c:

Variables

struct no_os_gpio_init_param gpio_ip
 
struct no_os_uart_init_param iio_demo_uart_ip
 
struct adc_demo_init_param adc_init_par
 
struct dac_demo_init_param dac_init_par
 
uint8_t in_buff [MAX_SIZE_BASE_ADDR] = {0}
 
uint8_t out_buff [MAX_SIZE_BASE_ADDR] = {0}
 

Detailed Description

Defines common data to be used by iio_demo_freeRTOS examples.

Author
Robert Budai (rober.nosp@m.t.bu.nosp@m.dai@a.nosp@m.nalo.nosp@m.g.com)

Copyright 2023(c) Analog Devices, Inc.

All rights reserved.

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 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, 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.

Variable Documentation

◆ adc_init_par

struct adc_demo_init_param adc_init_par
Initial value:
= {
.ext_buff_len = SAMPLES_PER_CHANNEL,
.ext_buff = (uint16_t **)loopback_buffs,
.dev_global_attr = 3333,
.dev_ch_attr = {
1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118,
1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126
}
}

◆ dac_init_par

struct dac_demo_init_param dac_init_par
Initial value:
= {
.loopback_buffer_len = SAMPLES_PER_CHANNEL,
.loopback_buffers = (uint16_t **)loopback_buffs,
.dev_global_attr = 4444,
.dev_ch_attr = {
1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118,
1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126
}
}

◆ gpio_ip

struct no_os_gpio_init_param gpio_ip
Initial value:
= {
.port = GPIO_PORT,
.number = 0,
.pull = NO_OS_PULL_NONE,
.platform_ops = GPIO_OPS,
.extra = GPIO_EXTRA,
}

◆ iio_demo_uart_ip

struct no_os_uart_init_param iio_demo_uart_ip
Initial value:
= {
.device_id = UART_DEVICE_ID,
.irq_id = UART_IRQ_ID,
.asynchronous_rx = true,
.baud_rate = UART_BAUDRATE,
.size = NO_OS_UART_CS_8,
.parity = NO_OS_UART_PAR_NO,
.extra = UART_EXTRA,
.platform_ops = UART_OPS,
}

◆ in_buff

uint8_t in_buff[MAX_SIZE_BASE_ADDR] = {0}

◆ out_buff

uint8_t out_buff[MAX_SIZE_BASE_ADDR] = {0}
GPIO_PORT
#define GPIO_PORT
Definition: parameters.h:62
NO_OS_UART_STOP_1_BIT
@ NO_OS_UART_STOP_1_BIT
Definition: no_os_uart.h:100
UART_EXTRA
#define UART_EXTRA
Definition: parameters.h:60
NO_OS_PULL_NONE
@ NO_OS_PULL_NONE
Definition: no_os_gpio.h:72
SAMPLES_PER_CHANNEL
#define SAMPLES_PER_CHANNEL
Definition: common_data.h:52
UART_OPS
#define UART_OPS
Definition: parameters.h:61
UART_IRQ_ID
#define UART_IRQ_ID
Definition: parameters.h:56
UART_BAUDRATE
#define UART_BAUDRATE
Definition: parameters.h:59
NO_OS_UART_PAR_NO
@ NO_OS_UART_PAR_NO
Definition: no_os_uart.h:83
GPIO_OPS
#define GPIO_OPS
Definition: parameters.h:84
UART_DEVICE_ID
#define UART_DEVICE_ID
Definition: parameters.h:58
loopback_buffs
#define loopback_buffs
Definition: common_data.h:76
NO_OS_UART_CS_8
@ NO_OS_UART_CS_8
Definition: no_os_uart.h:72
GPIO_EXTRA
#define GPIO_EXTRA
Definition: parameters.h:85