no-OS
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
parameters.h
Go to the documentation of this file.
1/***************************************************************************/
34#ifndef __PARAMETERS_H__
35#define __PARAMETERS_H__
36
37#include "stdio.h"
38#include "maxim_timer.h"
39#include "maxim_irq.h"
40#include "maxim_uart.h"
41#include "maxim_gpio.h"
42
43#define UART_CONFIG_BAUDRATE 115200
44#define UART_CONFIG_IRQ_ID UART2_IRQn
45#define UART_DEVICE_ID 2
46#define UART_EXTRA &uart_extra_ip
47
48#define GPIO_PORT 3
49#define GPIO_NR 9
50#define GPIO_EXTRA &gpio_extra_ip
51
52#define TIMER_ID 1
53#define TIMER_FREQ 32000
54
55#define IRQ_OPS &max_irq_ops
56#define UART_OPS &max_uart_ops
57#define TIMER_OPS &max_timer_ops
58#define GPIO_OPS &max_gpio_ops
59#define TIMER_EXTRA NULL
60
61#define WIFI_SW_RESET false
62
65
66#endif /* __PARAMETERS_H__ */
struct xil_uart_init_param uart_extra_ip
Definition parameters.c:37
struct xil_gpio_init_param gpio_extra_ip
Definition parameters.c:57
GPIO platform specific init parameters.
Definition maxim_gpio.h:55
Aditional UART config parameters.
Definition maxim_uart.h:55