Convert to new Doxygen style.
[bertos.git] / app / triface / appconfig.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2003, 2004, 2006 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief DevLib configuration options
9  *
10  * You should copy this header in your project and rename it to
11  * "config.h" and delete the CONFIG_ macros for the modules
12  * you're not using.
13  *
14  * <h2>Working with multiple applications</h2>
15  *
16  * If your project is made of multiple DevLib-based applications,
17  * create a custom "config.h" file in each application subdirectory
18  * and play with the compiler include path to get the desired result.
19  * You can share common options by creationg a "config_common.h" header
20  * and including it from all your "config.h" copies.
21  *
22  * <h2>Configuration style</h2>
23  *
24  * For improved compile-time checking of configuration options,
25  * the preferred way to use a \c CONFIG_ symbol is keeping it
26  * always defined with a value of either 0 or 1.  This lets
27  * you write tests like this:
28  *
29  * \code
30  *  #if CONFIG_FOO
31  *  void foo(void)
32  *  {
33  *      if (CONFIG_BAR)
34  *          bar();
35  *  }
36  *  #endif // CONFIG_FOO
37  * \endcode
38  *
39  * In most cases, we rely on the optimizer to discard checks
40  * on constant values and performing dead-code elimination.
41  *
42  * \version $Id$
43  * \author Bernardo Innocenti <bernie@develer.com>
44  * \author Stefano Fedrigo <aleph@develer.com>
45  */
46
47 /*#*
48  *#* $Log$
49  *#* Revision 1.4  2006/07/19 12:56:25  bernie
50  *#* Convert to new Doxygen style.
51  *#*
52  *#* Revision 1.3  2006/06/12 21:37:01  marco
53  *#* implemented some commands (ver and sleep)
54  *#*
55  *#* Revision 1.2  2006/06/01 12:29:21  marco
56  *#* Add first simple protocol command (version request).
57  *#*
58  *#* Revision 1.1  2006/05/18 00:41:47  bernie
59  *#* New triface devlib application.
60  *#*
61  *#*/
62
63 #ifndef APPCONFIG_TRIFACE_H
64 #define APPCONFIG_TRIFACE_H
65
66 /** Baud-rate for the kdebug console */
67 #define CONFIG_KDEBUG_BAUDRATE  38400
68
69 /** Serial port number for kdebug console */
70 #define CONFIG_KDEBUG_PORT  0
71
72
73 /**
74  * printf()-style formatter configuration.
75  *
76  * \sa PRINTF_DISABLED
77  * \sa PRINTF_NOMODIFIERS
78  * \sa PRINTF_REDUCED
79  * \sa PRINTF_NOFLOAT
80  * \sa PRINTF_FULL
81  */
82 #define CONFIG_PRINTF PRINTF_FULL
83
84 /**
85  * Multithreading kernel.
86  *
87  * \sa config_kern.h
88  */
89 #define CONFIG_KERNEL 0
90
91 /**
92  * \name Serial driver parameters
93  * \{
94  */
95         /** [bytes] Size of the outbound FIFO buffer for port 0. */
96         #define CONFIG_UART0_TXBUFSIZE  32
97
98         /** [bytes] Size of the inbound FIFO buffer for port 0. */
99         #define CONFIG_UART0_RXBUFSIZE  64
100
101         /** [bytes] Size of the outbound FIFO buffer for port 1. */
102         #define CONFIG_UART1_TXBUFSIZE  32
103
104         /** [bytes] Size of the inbound FIFO buffer for port 1. */
105         #define CONFIG_UART1_RXBUFSIZE  64
106
107         /** [bytes] Size of the outbound FIFO buffer for SPI port (AVR only). */
108         #define CONFIG_SPI_TXBUFSIZE    16
109
110         /** [bytes] Size of the inbound FIFO buffer for SPI port (AVR only). */
111         #define CONFIG_SPI_RXBUFSIZE    32
112
113         /** Default transmit timeout (ms). Set to -1 to disable timeout support */
114         #define CONFIG_SER_TXTIMEOUT    -1
115
116         /** Default receive timeout (ms). Set to -1 to disable timeout support */
117         #define CONFIG_SER_RXTIMEOUT    -1
118
119         /** Use RTS/CTS handshake */
120         #define CONFIG_SER_HWHANDSHAKE   0
121
122         /** Default baud rate (set to 0 to disable) */
123         #define CONFIG_SER_DEFBAUDRATE   0
124
125         /** Enable ser_gets() and ser_gets_echo() */
126         #define CONFIG_SER_GETS          1
127
128         /** Enable second serial port in emulator. */
129         #define CONFIG_EMUL_UART1        0
130
131         /**
132          * Transmit always something on serial port 0 TX
133          * to avoid interference when sending burst of data,
134          * using AVR multiprocessor serial mode
135          */
136         #define CONFIG_SER_TXFILL        0
137
138         #define CONFIG_SER_STROBE        0
139 /*\}*/
140
141 /// Hardware timer selection for drv/timer.c
142 #define CONFIG_TIMER  TIMER_ON_OUTPUT_COMPARE0
143
144 /// Debug timer interrupt using a strobe pin.
145 #define CONFIG_TIMER_STROBE  0
146
147 /// Enable watchdog timer.
148 #define CONFIG_WATCHDOG  0
149
150 /// Enable internal parser commands.
151 #define CONFIG_INTERNAL_COMMANDS  0
152
153 #endif /* APPCONFIG_TRIFACE_H */