precision-converters-firmware
Macros | Functions | Variables
app_config.c File Reference

Application configurations module. More...

#include <stdbool.h>
#include "app_config.h"
#include "common.h"
#include "no_os_error.h"
#include "no_os_uart.h"
#include "no_os_irq.h"
#include "no_os_gpio.h"
#include "no_os_i2c.h"
#include "no_os_eeprom.h"
Include dependency graph for app_config.c:

Macros

#define EEPROM_OPS_START_DELAY   0xfffff
 

Functions

int32_t init_system (void)
 Initialize the system peripherals. More...
 

Variables

struct no_os_uart_init_param uart_init_params
 
struct no_os_spi_init_param spi_init_params
 
struct no_os_gpio_init_param trigger_gpio_param
 
struct no_os_irq_init_param trigger_gpio_irq_params
 
struct no_os_uart_desc * uart_desc
 
struct no_os_gpio_desc * trigger_gpio_desc
 
struct no_os_irq_ctrl_desc * trigger_irq_desc
 
struct no_os_irq_ctrl_desc * ticker_int_desc
 
struct no_os_eeprom_desc * eeprom_desc
 

Detailed Description

Application configurations module.

This module contains the configurations needed for IIO application

Copyright (c) 2020-2023 Analog Devices, Inc.

This software is proprietary to Analog Devices, Inc. and its licensors. By using this software you agree to the terms of the associated Analog Devices Software License Agreement.

Macro Definition Documentation

◆ EEPROM_OPS_START_DELAY

#define EEPROM_OPS_START_DELAY   0xfffff

Function Documentation

◆ init_system()

int32_t init_system ( void  )

Initialize the system peripherals.

Returns
0 in case of success, negative error code otherwise

Variable Documentation

◆ eeprom_desc

struct no_os_eeprom_desc* eeprom_desc

◆ spi_init_params

struct no_os_spi_init_param spi_init_params
Initial value:
= {
.max_speed_hz = 10000000,
.chip_select = SPI_CSB,
.mode = NO_OS_SPI_MODE_3,
.platform_ops = &spi_ops,
}
#define spi_ops
Definition: app_config.h:86
#define spi_extra_init_params
Definition: app_config.h:80
#define SPI_CSB
Definition: app_config_mbed.h:33

◆ ticker_int_desc

struct no_os_irq_ctrl_desc* ticker_int_desc

◆ trigger_gpio_desc

struct no_os_gpio_desc* trigger_gpio_desc

◆ trigger_gpio_irq_params

struct no_os_irq_init_param trigger_gpio_irq_params
Initial value:
= {
.irq_ctrl_id = 0,
.platform_ops = &trigger_gpio_irq_ops,
}
#define trigger_gpio_irq_extra_params
Definition: app_config.h:81
#define trigger_gpio_irq_ops
Definition: app_config.h:90

◆ trigger_gpio_param

struct no_os_gpio_init_param trigger_gpio_param
Initial value:
= {
.number = TRIGGER_GPIO_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &trigger_gpio_ops,
}
#define trigger_gpio_ops
Definition: app_config.h:83
#define TRIGGER_GPIO_PIN
Definition: app_config.h:94
#define TRIGGER_GPIO_PORT
Definition: app_config.h:93
#define trigger_gpio_extra_init_params
Definition: app_config.h:82

◆ trigger_irq_desc

struct no_os_irq_ctrl_desc* trigger_irq_desc

◆ uart_desc

struct no_os_uart_desc* uart_desc

◆ uart_init_params

struct no_os_uart_init_param uart_init_params
Initial value:
= {
.device_id = NULL,
.baud_rate = IIO_UART_BAUD_RATE,
.size = NO_OS_UART_CS_8,
.parity = NO_OS_UART_PAR_NO,
.stop = NO_OS_UART_STOP_1_BIT,
.platform_ops = &uart_ops,
}
#define uart_extra_init_params
Definition: app_config.h:78
#define IIO_UART_BAUD_RATE
Definition: app_config.h:164
#define uart_ops
Definition: app_config.h:87