35#ifndef __PARAMETERS_H__
36#define __PARAMETERS_H__
40#include "maxim_gpio.h"
41#include "maxim_uart.h"
42#include "maxim_uart_stdio.h"
45#define INTC_DEVICE_ID 0
48#define UART_DEVICE_ID 0
49#define UART_BAUDRATE 57600
50#define UART_EXTRA &adis1650x_uart_extra_ip
51#define UART_OPS &max_uart_ops
52#define UART_IRQ_ID UART0_IRQn
55#define SPI_DEVICE_ID 1
58#define SPI_BAUDRATE 1000000
59#define SPI_OPS &max_spi_ops
60#define SPI_EXTRA &adis1650x_spi_extra_ip
62#define GPIO_OPS &max_gpio_ops
63#define GPIO_EXTRA &adis1650x_gpio_extra_ip
69#define GPIO_RESET_PIN_NUM 19
70#define GPIO_RESET_PORT_NUM 0
73#ifdef IIO_TRIGGER_EXAMPLE
74#define GPIO_DRDY_PIN_NUM 6
75#define GPIO_DRDY_PORT_NUM 1
77#define NVIC_GPIO_IRQ GPIO1_IRQn
79#define ADIS1650X_GPIO_TRIG_IRQ_ID GPIO_DRDY_PIN_NUM
80#define ADIS1650X_GPIO_CB_HANDLE MXC_GPIO_GET_GPIO(GPIO_DRDY_PORT_NUM)
82#define GPIO_IRQ_ID GPIO_DRDY_PORT_NUM
83#define GPIO_IRQ_OPS &max_gpio_irq_ops
84#define GPIO_IRQ_EXTRA &adis_gpio_drdy_extra_ip
GPIO platform specific init parameters.
Definition maxim_gpio.h:55
Maxim specific SPI initialization parameters.
Definition maxim_spi.h:53
Aditional UART config parameters.
Definition maxim_uart.h:55
Structure holding the parameters for GPIO initialization.
Definition no_os_gpio.h:67