c474c890e730d7bbc32d8ec61414ccb06eaba4c9
[bertos.git] / app / triface / cfg / cfg_ser.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
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.
10  *
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.
15  *
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
19  *
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.
28  *
29  * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
30  * All Rights Reserved.
31  * -->
32  *
33  * \brief Configuration file for serial module.
34  *
35  * \version $Id$
36  *
37  * \author Daniele Basile <asterix@develer.com>
38  */
39
40 #ifndef CFG_SER_H
41 #define CFG_SER_H
42
43
44 /// Kdebug console on debug unit
45 #define CONFIG_TRIFACE_PORT      1
46
47 /// Baud-rate for the kdebug console
48 #define CONFIG_TRIFACE_BAUDRATE  115200
49 /// Triface serial tag port
50 #define TAG_SER_PORT 0
51 ///Baud-rate for triface serial tag port
52 #define TAG_SER_BAUDRATE 9600
53
54 /// [bytes] Size of the outbound FIFO buffer for port 0.
55 #define CONFIG_UART0_TXBUFSIZE  32
56
57 /// [bytes] Size of the inbound FIFO buffer for port 0.
58 #define CONFIG_UART0_RXBUFSIZE  64
59
60 /// [bytes] Size of the outbound FIFO buffer for port 1.
61 #define CONFIG_UART1_TXBUFSIZE  32
62
63 /// [bytes] Size of the inbound FIFO buffer for port 1.
64 #define CONFIG_UART1_RXBUFSIZE  64
65
66
67 /// [bytes] Size of the outbound FIFO buffer for SPI port (AVR only)
68 #define CONFIG_SPI_TXBUFSIZE    32
69
70 /// [bytes] Size of the inbound FIFO buffer for SPI port (AVR only)
71 #define CONFIG_SPI_RXBUFSIZE    32
72
73 /// [bytes] Size of the outbound FIFO buffer for SPI port 0.
74 #define CONFIG_SPI0_TXBUFSIZE   32
75
76 /// [bytes] Size of the inbound FIFO buffer for SPI port 0.
77 #define CONFIG_SPI0_RXBUFSIZE   32
78
79 /// [bytes] Size of the outbound FIFO buffer for SPI port 1.
80 #define CONFIG_SPI1_TXBUFSIZE   32
81
82 /// [bytes] Size of the inbound FIFO buffer for SPI port 1.
83 #define CONFIG_SPI1_RXBUFSIZE   32
84
85 /// SPI data order (AVR only).
86 #define CONFIG_SPI_DATA_ORDER   SER_MSB_FIRST
87
88 /// SPI clock division factor (AVR only).
89 #define CONFIG_SPI_CLOCK_DIV    16
90
91 /// SPI clock polarity: 0 = normal low, 1 = normal high (AVR only).
92 #define CONFIG_SPI_CLOCK_POL    0
93
94 /// SPI clock phase: 0 = sample on first edge, 1 = sample on second clock edge (AVR only).
95 #define CONFIG_SPI_CLOCK_PHASE  0
96
97 /// Default transmit timeout (ms). Set to -1 for infinite timeout, 0 for null timeout
98 #define CONFIG_SER_TXTIMEOUT    0
99
100 /// Default receive timeout (ms). Set to -1 for infinite timeout, 0 for null timeout
101 #define CONFIG_SER_RXTIMEOUT    0
102
103 /// Use RTS/CTS handshake
104 #define CONFIG_SER_HWHANDSHAKE   0
105
106 /// Default baud rate (set to 0 to disable).
107 #define CONFIG_SER_DEFBAUDRATE   0
108
109 /// Enable second serial port in emulator.
110 #define CONFIG_EMUL_UART1        0
111
112 /**
113  * Transmit always something on serial port 0 TX
114  * to avoid interference when sending burst of data,
115  * using AVR multiprocessor serial mode
116  */
117 #define CONFIG_SER_TXFILL        0
118
119 /// For serial debug.
120 #define CONFIG_SER_STROBE        0
121
122 #endif /* CFG_SER_H */