4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
30 * All Rights Reserved.
33 * \brief Configuration file for serial module.
35 * \author Daniele Basile <asterix@develer.com>
42 * Example of setting for serial port and
44 * Edit these define for your project.
48 * Size of the outbound FIFO buffer for port 0 [bytes].
52 #define CONFIG_UART0_TXBUFSIZE 32
55 * Size of the inbound FIFO buffer for port 0 [bytes].
59 #define CONFIG_UART0_RXBUFSIZE 32
62 * Size of the outbound FIFO buffer for port 1 [bytes].
65 * $WIZ$ supports = "lm3s or lpc2 or (at91 and not atmega8 and not atmega168 and not atmega32)"
67 #define CONFIG_UART1_TXBUFSIZE 32
70 * Size of the inbound FIFO buffer for port 1 [bytes].
73 * $WIZ$ supports = "lm3s or lpc2 or (at91 and not atmega8 and not atmega168 and not atmega32)"
75 #define CONFIG_UART1_RXBUFSIZE 32
78 * Size of the outbound FIFO buffer for port 2 [bytes].
81 * $WIZ$ supports = "lm3s or lpc2"
83 #define CONFIG_UART2_TXBUFSIZE 32
86 * Size of the inbound FIFO buffer for port 2 [bytes].
89 * $WIZ$ supports = "lm3s or lpc2"
91 #define CONFIG_UART2_RXBUFSIZE 32
94 * Size of the outbound FIFO buffer for port 3 [bytes].
97 * $WIZ$ supports = "lpc2"
99 #define CONFIG_UART3_TXBUFSIZE 32
102 * Size of the inbound FIFO buffer for port 3 [bytes].
105 * $WIZ$ supports = "lpc2"
107 #define CONFIG_UART3_RXBUFSIZE 32
111 * Size of the outbound FIFO buffer for SPI port [bytes].
114 * $WIZ$ supports = "avr"
116 #define CONFIG_SPI_TXBUFSIZE 32
119 * Size of the inbound FIFO buffer for SPI port [bytes].
122 * $WIZ$ supports = "avr"
124 #define CONFIG_SPI_RXBUFSIZE 32
127 * Size of the outbound FIFO buffer for SPI port 0 [bytes].
130 * $WIZ$ supports = "at91"
132 #define CONFIG_SPI0_TXBUFSIZE 32
135 * Size of the inbound FIFO buffer for SPI port 0 [bytes].
138 * $WIZ$ supports = "at91"
140 #define CONFIG_SPI0_RXBUFSIZE 32
143 * Size of the outbound FIFO buffer for SPI port 1 [bytes].
146 * $WIZ$ supports = "at91"
148 #define CONFIG_SPI1_TXBUFSIZE 32
151 * Size of the inbound FIFO buffer for SPI port 1 [bytes].
154 * $WIZ$ supports = "at91"
156 #define CONFIG_SPI1_RXBUFSIZE 32
161 * $WIZ$ type = "enum"
162 * $WIZ$ value_list = "ser_order_bit"
163 * $WIZ$ supports = "avr"
165 #define CONFIG_SPI_DATA_ORDER SER_MSB_FIRST
168 * SPI clock division factor.
170 * $WIZ$ supports = "avr"
172 #define CONFIG_SPI_CLOCK_DIV 16
175 * SPI clock polarity: normal low or normal high.
176 * $WIZ$ type = "enum"
177 * $WIZ$ value_list = "ser_spi_pol"
178 * $WIZ$ supports = "avr"
180 #define CONFIG_SPI_CLOCK_POL SPI_NORMAL_LOW
183 * SPI clock phase you can choose sample on first edge or
184 * sample on second clock edge.
185 * $WIZ$ type = "enum"
186 * $WIZ$ value_list = "ser_spi_phase"
187 * $WIZ$ supports = "avr"
189 #define CONFIG_SPI_CLOCK_PHASE SPI_SAMPLE_ON_FIRST_EDGE
192 * Default transmit timeout (ms). Set to -1 to disable timeout support.
196 #define CONFIG_SER_TXTIMEOUT -1
199 * Default receive timeout (ms). Set to -1 to disable timeout support.
203 #define CONFIG_SER_RXTIMEOUT -1
206 * Use RTS/CTS handshake.
207 * $WIZ$ type = "boolean"
208 * $WIZ$ supports = "False"
210 #define CONFIG_SER_HWHANDSHAKE 0
213 * Default baudrate for all serial ports (set to 0 to disable).
217 #define CONFIG_SER_DEFBAUDRATE 0UL
219 /// Enable strobe pin for debugging serial interrupt. $WIZ$ type = "boolean"
220 #define CONFIG_SER_STROBE 0
222 #endif /* CFG_SER_H */