no-OS
Loading...
Searching...
No Matches
parameters.h
Go to the documentation of this file.
1/***************************************************************************/
33
34#ifndef __PARAMETERS_H__
35#define __PARAMETERS_H__
36
37#include "linux_gpio.h"
38#include "linux_spi.h"
39#include "linux_uart.h"
40
41#define UART_DEVICE_ID 0
42#define UART_BAUDRATE 115200
43#define UART_IRQ_ID 0
44#define UART_EXTRA NULL
45#define UART_OPS &linux_uart_ops
46
47#define SPI_DEVICE_ID 0
48#define SPI_BAUDRATE 1000000
49#define SPI_CS 0
50#define SPI_OPS &linux_spi_ops
51#define SPI_EXTRA NULL
52
53#define GPIO_RESET_PIN_NUM 12
54#define GPIO_RESET_PORT_NUM 0
55#define GPIO_OPS &linux_gpio_ops
56#define GPIO_EXTRA NULL
57
58#endif /* __PARAMETERS_H__ */