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

Defines platform data to be used by ADE7758 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.
 

Variables

struct max_uart_init_param max_uart_extra_ip
 
struct max_gpio_init_param gpio_extra
 
struct max_spi_init_param ade7758_spi_extra_ip
 
struct max_gpio_init_param ade7758_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 ade7758_gpio_irq_ip
 
struct no_os_spi_init_param ade7758_spi_ip
 
struct no_os_irq_init_param ade7758_gpio_int_ip
 

Detailed Description

Defines platform data to be used by ADE7758 example project.

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

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

◆ ade7758_gpio_extra_ip

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

◆ ade7758_gpio_int_ip

struct no_os_irq_init_param ade7758_gpio_int_ip
Initial value:
= {
.platform_ops = GPIO_IRQ_OPS,
.irq_ctrl_id = GPIO_CTRL_IRQ_ID,
.extra = GPIO_IRQ_EXTRA,
}
#define GPIO_IRQ_EXTRA
Definition parameters.h:79
#define GPIO_IRQ_OPS
Definition parameters.h:77
#define GPIO_CTRL_IRQ_ID
Definition parameters.h:78

◆ ade7758_gpio_irq_ip

struct no_os_gpio_init_param ade7758_gpio_irq_ip
Initial value:
= {
.port = GPIO_IRQ_PORT,
.number = GPIO_IRQ_PIN,
.pull = NO_OS_PULL_NONE,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}
const struct xil_gpio_init_param gpio_extra
Definition ad5758_sdz.c:63
#define GPIO_IRQ_PIN
Definition platform.h:60
#define GPIO_IRQ_PORT
Definition platform.h:59
const struct no_os_gpio_platform_ops max_gpio_ops
maxim platform specific GPIO platform ops structure
Definition maxim_gpio.c:316
@ NO_OS_PULL_NONE
Definition no_os_gpio.h:54

◆ ade7758_spi_extra_ip

struct max_spi_init_param ade7758_spi_extra_ip
Initial value:
= {
.num_slaves = SPI_SLAVE_NUM,
.polarity = SPI_SS_POL_LOW,
.vssel = MXC_GPIO_VSSEL_VDDIOH,
}
#define SPI_SLAVE_NUM
Definition platform.h:68
@ SPI_SS_POL_LOW
Definition maxim_spi.h:49

◆ ade7758_spi_ip

struct no_os_spi_init_param ade7758_spi_ip
Initial value:
= {
.device_id = SPI_DEVICE_ID,
.max_speed_hz = SPI_BAUDRATE,
.platform_ops = &max_spi_ops,
.chip_select = SPI_CS,
}
#define SPI_DEVICE_ID
Definition parameters.h:63
#define SPI_BAUDRATE
Definition parameters.h:67
#define SPI_CS
Definition parameters.h:64
struct max_spi_init_param ade7758_spi_extra_ip
Definition platform.c:44
const struct no_os_spi_platform_ops max_spi_ops
maxim platform specific SPI platform ops structure
Definition maxim_spi.c:786
@ NO_OS_SPI_BIT_ORDER_MSB_FIRST
Definition no_os_spi.h:64
@ NO_OS_SPI_MODE_1
Definition no_os_spi.h:51

◆ 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,
}
#define GPIO_LED_PIN
Definition platform.h:52
#define GPIO_LED_PORT
Definition platform.h:51
@ NO_OS_PULL_UP
Definition no_os_gpio.h:56

◆ max_uart_extra_ip

struct max_uart_init_param max_uart_extra_ip
Initial value:
= {
.flow = UART_FLOW_DIS
}
@ UART_FLOW_DIS
Definition maxim_uart.h:47

◆ 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,
}
struct max_uart_init_param max_uart_extra_ip
Definition platform.c:36
#define UART_BAUD
Definition platform.h:71
#define UART_DEV_ID
Definition platform.h:70
const struct no_os_uart_platform_ops max_uart_ops
Maxim platform specific UART platform ops structure.
Definition maxim_uart.c:467
@ NO_OS_UART_CS_8
Definition no_os_uart.h:54
@ NO_OS_UART_PAR_NO
Definition no_os_uart.h:65
@ NO_OS_UART_STOP_1_BIT
Definition no_os_uart.h:82