no-OS
Loading...
Searching...
No Matches
platform.c File Reference

Defines common data to be used by ADE9039 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 ade9039_spi_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_psm0_ip
 
struct no_os_gpio_init_param gpio_psm1_ip
 
struct no_os_gpio_init_param gpio_reset_ip
 
struct no_os_spi_init_param ade9039_spi_ip
 

Detailed Description

Defines common data to be used by ADE9039 example project.

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

Copyright 2026(c) Analog Devices, Inc.

SPDX-License-Identifier: BSD-3-Clause

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

◆ ade9039_spi_extra_ip

struct max_spi_init_param ade9039_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

◆ ade9039_spi_ip

struct no_os_spi_init_param ade9039_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 ade9039_spi_extra_ip
Definition platform.c:21
const struct no_os_spi_platform_ops max_spi_ops
maxim platform specific SPI platform ops structure
Definition maxim_spi.c:787
@ NO_OS_SPI_BIT_ORDER_MSB_FIRST
Definition no_os_spi.h:64
@ NO_OS_SPI_MODE_0
Definition no_os_spi.h:49

◆ 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,
}
const struct xil_gpio_init_param gpio_extra
Definition ad5758_sdz.c:66
#define GPIO_LED_PIN
Definition platform.h:52
#define GPIO_LED_PORT
Definition platform.h:51
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_UP
Definition no_os_gpio.h:56

◆ gpio_psm0_ip

struct no_os_gpio_init_param gpio_psm0_ip
Initial value:
= {
.port = GPIO_PSM0_PORT,
.number = GPIO_PSM0_PIN,
.pull = NO_OS_PULL_UP,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}
#define GPIO_PSM0_PORT
Definition platform.h:71
#define GPIO_PSM0_PIN
Definition platform.h:72

◆ gpio_psm1_ip

struct no_os_gpio_init_param gpio_psm1_ip
Initial value:
= {
.port = GPIO_PSM1_PORT,
.number = GPIO_PSM1_PIN,
.pull = NO_OS_PULL_UP,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}
#define GPIO_PSM1_PIN
Definition platform.h:75
#define GPIO_PSM1_PORT
Definition platform.h:74

◆ 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_UP,
.platform_ops = &max_gpio_ops,
.extra = &gpio_extra,
}
#define GPIO_RESET_PORT
Definition parameters.h:60
#define GPIO_RESET_PIN
Definition platform.h:55

◆ max_uart_extra_ip

struct max_uart_init_param max_uart_extra_ip
Initial value:
= {
}
@ MAX_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,
}
#define UART_DEV_ID
Definition common_data.h:46
struct max_uart_init_param max_uart_extra_ip
Definition parameters.c:36
#define UART_BAUD
Definition platform.h:71
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