no-OS
Functions | Variables
common_data.c File Reference

Defines common data to be used by ADE9153A example project. More...

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

Functions

int interface_toggle_led (struct no_os_gpio_desc *gpio_led_desc)
 Toggle Led. More...
 
int read_measurements (struct ade9153a_dev *dev)
 Read measurements. More...
 
int autocalibration_read_vals (struct ade9153a_dev *dev)
 Autocalibration read values. More...
 
int autocalibration_start (struct ade9153a_dev *dev)
 Autocalibration start. More...
 

Variables

struct max_uart_init_param max_uart_extra_ip
 
struct max_gpio_init_param gpio_extra
 
struct max_spi_init_param ade9153a_spi_extra_ip
 
struct max_gpio_init_param ade9153a_gpio_extra_ip
 
struct no_os_uart_init_param uart_ip
 
struct no_os_gpio_init_param gpio_led1_ip
 
struct no_os_gpio_init_param gpio_ss_ip
 
struct no_os_gpio_init_param gpio_sck_ip
 
struct no_os_gpio_init_param gpio_reset_ip
 
struct no_os_gpio_init_param ade9153a_gpio_rdy_ip
 
struct no_os_spi_init_param ade9153a_spi_ip
 
struct no_os_irq_init_param ade9153a_gpio_irq_ip
 

Detailed Description

Defines common data to be used by ADE9153A example project.

Author
REtz (radu..nosp@m.etz@.nosp@m.analo.nosp@m.g.co.nosp@m.m)

Copyright (c) 2024 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.

Function Documentation

◆ autocalibration_read_vals()

int autocalibration_read_vals ( struct ade9153a_dev dev)

Autocalibration read values.

Parameters
dev- The device structure.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ autocalibration_start()

int autocalibration_start ( struct ade9153a_dev dev)

Autocalibration start.

Parameters
dev- The device structure.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ interface_toggle_led()

int interface_toggle_led ( struct no_os_gpio_desc gpio_led_desc)

Toggle Led.

Toggle LED.

Parameters
gpio_led_desc- led descriptor
Returns
0 in case of success, negative error code otherwise.

◆ read_measurements()

int read_measurements ( struct ade9153a_dev dev)

Read measurements.

Parameters
dev- The device structure.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

Variable Documentation

◆ ade9153a_gpio_extra_ip

struct max_gpio_init_param ade9153a_gpio_extra_ip
Initial value:
= {
.vssel = MXC_GPIO_VSSEL_VDDIOH,
}

◆ ade9153a_gpio_irq_ip

struct no_os_irq_init_param ade9153a_gpio_irq_ip
Initial value:
= {
.platform_ops = GPIO_IRQ_OPS,
.irq_ctrl_id = GPIO_CTRL_IRQ_ID,
.extra = GPIO_IRQ_EXTRA,
}

◆ ade9153a_gpio_rdy_ip

struct no_os_gpio_init_param ade9153a_gpio_rdy_ip
Initial value:
= {
.port = GPIO_RDY_PORT,
.number = GPIO_RDY_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}

◆ ade9153a_spi_extra_ip

struct max_spi_init_param ade9153a_spi_extra_ip
Initial value:
= {
.num_slaves = SPI_SLAVE_NUM,
.polarity = SPI_SS_POL_LOW,
.vssel = MXC_GPIO_VSSEL_VDDIOH,
}

◆ ade9153a_spi_ip

struct no_os_spi_init_param ade9153a_spi_ip
Initial value:
= {
.device_id = SPI_DEVICE_ID,
.max_speed_hz = SPI_BAUDRATE,
.platform_ops = &max_spi_ops,
.chip_select = SPI_CS,
}

◆ gpio_extra

struct max_gpio_init_param gpio_extra
Initial value:
= {
.vssel = MXC_GPIO_VSSEL_VDDIOH,
}

◆ gpio_led1_ip

struct no_os_gpio_init_param gpio_led1_ip
Initial value:
= {
.port = GPIO_LED_PORT,
.number = GPIO_LED_PIN,
.pull = NO_OS_PULL_UP,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}

◆ gpio_reset_ip

struct no_os_gpio_init_param gpio_reset_ip
Initial value:
= {
.port = GPIO_RESET_PORT,
.number = GPIO_RESET_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}

◆ gpio_sck_ip

struct no_os_gpio_init_param gpio_sck_ip
Initial value:
= {
.port = GPIO_SCK_PORT,
.number = GPIO_SCK_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}

◆ gpio_ss_ip

struct no_os_gpio_init_param gpio_ss_ip
Initial value:
= {
.port = GPIO_SS_PORT,
.number = GPIO_SS_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}

◆ max_uart_extra_ip

struct max_uart_init_param max_uart_extra_ip
Initial value:
= {
.flow = UART_FLOW_DIS
}

◆ uart_ip

struct no_os_uart_init_param uart_ip
Initial value:
= {
.device_id = UART_DEV_ID,
.baud_rate = UART_BAUD,
.size = NO_OS_UART_CS_8,
.parity = NO_OS_UART_PAR_NO,
.platform_ops = &max_uart_ops,
.extra = &max_uart_extra_ip,
}
max_uart_extra_ip
struct max_uart_init_param max_uart_extra_ip
Definition: common_data.c:43
GPIO_SS_PORT
#define GPIO_SS_PORT
Definition: common_data.h:80
NO_OS_UART_STOP_1_BIT
@ NO_OS_UART_STOP_1_BIT
Definition: no_os_uart.h:94
GPIO_LED_PIN
#define GPIO_LED_PIN
Definition: platform.h:63
SPI_SS_POL_LOW
@ SPI_SS_POL_LOW
Definition: maxim_spi.h:49
NO_OS_PULL_NONE
@ NO_OS_PULL_NONE
Definition: no_os_gpio.h:66
GPIO_RESET_PORT
#define GPIO_RESET_PORT
Definition: parameters.h:67
GPIO_SS_PIN
#define GPIO_SS_PIN
Definition: common_data.h:81
GPIO_RESET_PIN
#define GPIO_RESET_PIN
Definition: common_data.h:86
GPIO_SCK_PIN
#define GPIO_SCK_PIN
Definition: common_data.h:83
SPI_BAUDRATE
#define SPI_BAUDRATE
Definition: parameters.h:73
ade9153a_spi_extra_ip
struct max_spi_init_param ade9153a_spi_extra_ip
Definition: common_data.c:51
max_spi_ops
const struct no_os_spi_platform_ops max_spi_ops
maxim platform specific SPI platform ops structure
Definition: maxim_spi.c:795
GPIO_LED_PORT
#define GPIO_LED_PORT
Definition: platform.h:62
UART_FLOW_DIS
@ UART_FLOW_DIS
Definition: maxim_uart.h:47
max_gpio_ops
const struct no_os_gpio_platform_ops max_gpio_ops
maxim platform specific GPIO platform ops structure
Definition: maxim_gpio.c:320
UART_DEV_ID
#define UART_DEV_ID
Definition: platform.h:77
max_uart_ops
const struct no_os_uart_platform_ops max_uart_ops
Maxim platform specific UART platform ops structure.
Definition: maxim_uart.c:475
SPI_SLAVE_NUM
#define SPI_SLAVE_NUM
Definition: platform.h:75
GPIO_RDY_PIN
#define GPIO_RDY_PIN
Definition: platform.h:68
GPIO_RDY_PORT
#define GPIO_RDY_PORT
Definition: platform.h:67
SPI_CS
#define SPI_CS
Definition: parameters.h:70
NO_OS_SPI_BIT_ORDER_MSB_FIRST
@ NO_OS_SPI_BIT_ORDER_MSB_FIRST
Definition: no_os_spi.h:76
SPI_DEVICE_ID
#define SPI_DEVICE_ID
Definition: parameters.h:69
gpio_extra
struct max_gpio_init_param gpio_extra
Definition: common_data.c:47
NO_OS_UART_PAR_NO
@ NO_OS_UART_PAR_NO
Definition: no_os_uart.h:77
GPIO_CTRL_IRQ_ID
#define GPIO_CTRL_IRQ_ID
Definition: parameters.h:84
NO_OS_PULL_UP
@ NO_OS_PULL_UP
Definition: no_os_gpio.h:68
UART_BAUD
#define UART_BAUD
Definition: platform.h:78
NO_OS_SPI_MODE_0
@ NO_OS_SPI_MODE_0
Definition: no_os_spi.h:61
GPIO_IRQ_EXTRA
#define GPIO_IRQ_EXTRA
Definition: parameters.h:85
NO_OS_UART_CS_8
@ NO_OS_UART_CS_8
Definition: no_os_uart.h:66
GPIO_IRQ_OPS
#define GPIO_IRQ_OPS
Definition: parameters.h:83
GPIO_SCK_PORT
#define GPIO_SCK_PORT
Definition: common_data.h:82