a00ab85dfde2f51435362087a1b94e98d97ba522
[bertos.git] / examples / at91sam7x / cfg / cfg_ser.h
1 /**\r
2  * \file\r
3  * <!--\r
4  * This file is part of BeRTOS.\r
5  *\r
6  * Bertos is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * This program is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program; if not, write to the Free Software\r
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
19  *\r
20  * As a special exception, you may use this file as part of a free software\r
21  * library without restriction.  Specifically, if other files instantiate\r
22  * templates or use macros or inline functions from this file, or you compile\r
23  * this file and link it with other files to produce an executable, this\r
24  * file does not by itself cause the resulting executable to be covered by\r
25  * the GNU General Public License.  This exception does not however\r
26  * invalidate any other reasons why the executable file might be covered by\r
27  * the GNU General Public License.\r
28  *\r
29  * Copyright 2008 Develer S.r.l. (http://www.develer.com/)\r
30  * All Rights Reserved.\r
31  * -->\r
32  *\r
33  * \brief Configuration file for serial module.\r
34  *\r
35  * \version $Id: cfg_ser.h 2571 2009-04-20 10:37:07Z batt $\r
36  *\r
37  * \author Daniele Basile <asterix@develer.com>\r
38  */\r
39 \r
40 #ifndef CFG_SER_H\r
41 #define CFG_SER_H\r
42 \r
43 /**\r
44  * Example of setting for serial port and\r
45  * spi port.\r
46  * Edit these define for your project.\r
47  */\r
48 \r
49 /// [bytes] Size of the outbound FIFO buffer for port 0.\r
50 #define CONFIG_UART0_TXBUFSIZE  32\r
51 \r
52 /// [bytes] Size of the inbound FIFO buffer for port 0.\r
53 #define CONFIG_UART0_RXBUFSIZE  32\r
54 \r
55 /// [bytes] Size of the outbound FIFO buffer for port 1.\r
56 #define CONFIG_UART1_TXBUFSIZE  32\r
57 \r
58 /// [bytes] Size of the inbound FIFO buffer for port 1.\r
59 #define CONFIG_UART1_RXBUFSIZE  32\r
60 \r
61 \r
62 /// [bytes] Size of the outbound FIFO buffer for SPI port (AVR only)\r
63 #define CONFIG_SPI_TXBUFSIZE    32\r
64 \r
65 /// [bytes] Size of the inbound FIFO buffer for SPI port (AVR only)\r
66 #define CONFIG_SPI_RXBUFSIZE    32\r
67 \r
68 /// [bytes] Size of the outbound FIFO buffer for SPI port 0.\r
69 #define CONFIG_SPI0_TXBUFSIZE   32\r
70 \r
71 /// [bytes] Size of the inbound FIFO buffer for SPI port 0.\r
72 #define CONFIG_SPI0_RXBUFSIZE   32\r
73 \r
74 /// [bytes] Size of the outbound FIFO buffer for SPI port 1.\r
75 #define CONFIG_SPI1_TXBUFSIZE   32\r
76 \r
77 /// [bytes] Size of the inbound FIFO buffer for SPI port 1.\r
78 #define CONFIG_SPI1_RXBUFSIZE   32\r
79 \r
80 /// SPI data order (AVR only).\r
81 #define CONFIG_SPI_DATA_ORDER   SER_MSB_FIRST\r
82 \r
83 /// SPI clock division factor (AVR only).\r
84 #define CONFIG_SPI_CLOCK_DIV    16\r
85 \r
86 /// SPI clock polarity: 0 = normal low, 1 = normal high (AVR only).\r
87 #define CONFIG_SPI_CLOCK_POL    0\r
88 \r
89 /// SPI clock phase: 0 = sample on first edge, 1 = sample on second clock edge (AVR only).\r
90 #define CONFIG_SPI_CLOCK_PHASE  0\r
91 \r
92 /// Default transmit timeout (ms). Set to -1 to disable timeout support.\r
93 #define CONFIG_SER_TXTIMEOUT    -1\r
94 \r
95 /// Default receive timeout (ms). Set to -1 to disable timeout support.\r
96 #define CONFIG_SER_RXTIMEOUT    -1\r
97 \r
98 /// Use RTS/CTS handshake\r
99 #define CONFIG_SER_HWHANDSHAKE   0\r
100 \r
101 /// Default baud rate (set to 0 to disable).\r
102 #define CONFIG_SER_DEFBAUDRATE   0\r
103 \r
104 /// For serial debug.\r
105 #define CONFIG_SER_STROBE        0\r
106 \r
107 #endif /* CFG_SER_H */\r