no-OS
Functions | Variables
platform.c File Reference

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

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

Functions

int interface_toggle_led (struct no_os_gpio_desc *gpio_led_desc)
 Toggle Led. More...
 

Variables

struct max_uart_init_param max_uart_extra_ip
 
struct max_gpio_init_param gpio_extra
 
struct max_spi_init_param ade9000_spi_extra_ip
 
struct max_gpio_init_param ade9000_gpio_extra_ip
 
struct no_os_uart_init_param uart_ip
 
struct no_os_gpio_init_param gpio_led1_ip
 
struct no_os_spi_init_param ade9000_spi_ip
 

Detailed Description

Defines common data to be used by ADE9000 example project.

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

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

Function Documentation

◆ 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.

Variable Documentation

◆ ade9000_gpio_extra_ip

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

◆ ade9000_spi_extra_ip

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

◆ ade9000_spi_ip

struct no_os_spi_init_param ade9000_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,
}

◆ 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,
}
NO_OS_UART_STOP_1_BIT
@ NO_OS_UART_STOP_1_BIT
Definition: no_os_uart.h:94
SPI_SS_POL_LOW
@ SPI_SS_POL_LOW
Definition: maxim_spi.h:49
GPIO_LED_PORT
#define GPIO_LED_PORT
Definition: platform.h:62
max_uart_extra_ip
struct max_uart_init_param max_uart_extra_ip
Definition: platform.c:43
ade9000_spi_extra_ip
struct max_spi_init_param ade9000_spi_extra_ip
Definition: platform.c:51
SPI_BAUDRATE
#define SPI_BAUDRATE
Definition: parameters.h:73
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
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
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
UART_BAUD
#define UART_BAUD
Definition: platform.h:78
SPI_SLAVE_NUM
#define SPI_SLAVE_NUM
Definition: platform.h:75
SPI_CS
#define SPI_CS
Definition: parameters.h:70
GPIO_LED_PIN
#define GPIO_LED_PIN
Definition: platform.h:63
NO_OS_SPI_BIT_ORDER_MSB_FIRST
@ NO_OS_SPI_BIT_ORDER_MSB_FIRST
Definition: no_os_spi.h:76
UART_DEV_ID
#define UART_DEV_ID
Definition: platform.h:77
SPI_DEVICE_ID
#define SPI_DEVICE_ID
Definition: parameters.h:69
gpio_extra
struct max_gpio_init_param gpio_extra
Definition: platform.c:47
NO_OS_UART_PAR_NO
@ NO_OS_UART_PAR_NO
Definition: no_os_uart.h:77
NO_OS_PULL_UP
@ NO_OS_PULL_UP
Definition: no_os_gpio.h:68
NO_OS_SPI_MODE_0
@ NO_OS_SPI_MODE_0
Definition: no_os_spi.h:61
NO_OS_UART_CS_8
@ NO_OS_UART_CS_8
Definition: no_os_uart.h:66