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.
8 * \brief DevLib configuration options
10 * You should copy this header in your project and rename it to
11 * "config.h" and delete the CONFIG_ macros for the modules
14 * <h2>Working with multiple applications</h2>
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.
22 * <h2>Configuration style</h2>
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:
36 * #endif // CONFIG_FOO
39 * In most cases, we rely on the optimizer to discard checks
40 * on constant values and performing dead-code elimination.
43 * \author Bernardo Innocenti <bernie@develer.com>
44 * \author Stefano Fedrigo <aleph@develer.com>
49 *#* Revision 1.16 2007/02/12 15:29:41 asterix
50 *#* Add CONFIG_RANDPOOL_TIMER macro to swich on or off timer support in randpool.
52 *#* Revision 1.15 2007/02/08 14:20:35 asterix
53 *#* Add CONFIG_SIZE_ENTROPY_POOL.
55 *#* Revision 1.14 2007/02/06 11:37:26 asterix
56 *#* Add CONFIG_MD2_STD_PERM for use standard permutation in MD2.
58 *#* Revision 1.13 2007/01/31 13:49:40 asterix
59 *#* Add config size block for MD2
61 *#* Revision 1.3 2006/09/13 18:29:22 bernie
62 *#* Add a few missing CONFIG_ definitions.
64 *#* Revision 1.2 2006/07/19 12:56:24 bernie
65 *#* Convert to new Doxygen style.
67 *#* Revision 1.1 2006/05/18 00:40:43 bernie
68 *#* Rename appconfig.h to appconfig_common.h.
70 *#* Revision 1.11 2006/04/11 00:08:53 bernie
71 *#* Add smooth scrolling for menus.
73 *#* Revision 1.10 2006/03/22 09:48:51 bernie
74 *#* Add a few more config options.
76 *#* Revision 1.9 2006/02/24 00:27:35 bernie
77 *#* Enable kernel and fix Doxygen markup.
79 *#* Revision 1.8 2006/02/21 16:06:05 bernie
80 *#* Update copyright info.
82 *#* Revision 1.7 2006/02/17 22:28:19 bernie
83 *#* Add missing UART definitions.
85 *#* Revision 1.6 2006/02/15 09:12:56 bernie
86 *#* Switch to BITMAP_FMT_PLANAR_V_LSB.
88 *#* Revision 1.5 2006/02/10 12:34:33 bernie
89 *#* Add missing config options for gfx and kbd.
91 *#* Revision 1.4 2006/01/23 23:12:27 bernie
92 *#* Enable CONFIG_GFX_VCOORDS.
94 *#* Revision 1.3 2006/01/17 02:30:06 bernie
95 *#* Add new config vars.
97 *#* Revision 1.2 2005/11/27 03:04:57 bernie
98 *#* CONFIG_WATCHDOG: New config option.
100 *#* Revision 1.1 2005/11/04 17:42:12 bernie
101 *#* Move cfg/config.h to appconfig.h.
107 /** Baud-rate for the kdebug console */
108 #define CONFIG_KDEBUG_BAUDRATE 19200
111 * printf()-style formatter configuration.
113 * \sa PRINTF_DISABLED
114 * \sa PRINTF_NOMODIFIERS
119 #define CONFIG_PRINTF PRINTF_FULL
122 * Multithreading kernel.
126 #define CONFIG_KERNEL 1
129 * \name Serial driver parameters
132 /** [bytes] Size of the outbound FIFO buffer for port 0. */
133 #define CONFIG_UART0_TXBUFSIZE 32
135 /** [bytes] Size of the inbound FIFO buffer for port 0. */
136 #define CONFIG_UART0_RXBUFSIZE 64
138 /** [bytes] Size of the outbound FIFO buffer for port 1. */
139 #define CONFIG_UART1_TXBUFSIZE 32
141 /** [bytes] Size of the inbound FIFO buffer for port 1. */
142 #define CONFIG_UART1_RXBUFSIZE 64
144 /** [bytes] Size of the outbound FIFO buffer for SPI port (AVR only). */
145 #define CONFIG_SPI_TXBUFSIZE 16
147 /** [bytes] Size of the inbound FIFO buffer for SPI port (AVR only). */
148 #define CONFIG_SPI_RXBUFSIZE 32
150 /** SPI data order (AVR only). */
151 #define CONFIG_SPI_DATA_ORDER SER_MSB_FIRST
153 /** SPI clock division factor (AVR only). */
154 #define CONFIG_SPI_CLOCK_DIV 16
156 /** SPI clock polarity: 0 = normal low, 1 = normal high (AVR only). */
157 #define CONFIG_SPI_CLOCK_POL 0
159 /** SPI clock phase: 0 = sample on first edge, 1 = sample on second clock edge (AVR only). */
160 #define CONFIG_SPI_CLOCK_PHASE 0
162 /** Default transmit timeout (ms). Set to -1 to disable timeout support */
163 #define CONFIG_SER_TXTIMEOUT -1
165 /** Default receive timeout (ms). Set to -1 to disable timeout support */
166 #define CONFIG_SER_RXTIMEOUT -1
168 /** Use RTS/CTS handshake */
169 #define CONFIG_SER_HWHANDSHAKE 0
171 /** Default baud rate (set to 0 to disable) */
172 #define CONFIG_SER_DEFBAUDRATE 0
174 /** Enable ser_gets() and ser_gets_echo() */
175 #define CONFIG_SER_GETS 0
177 /** Enable second serial port in emulator. */
178 #define CONFIG_EMUL_UART1 0
181 * Transmit always something on serial port 0 TX
182 * to avoid interference when sending burst of data,
183 * using AVR multiprocessor serial mode
185 #define CONFIG_SER_TXFILL 0
187 #define CONFIG_SER_STROBE 0
190 /// Hardware timer selection for drv/timer.c
191 #define CONFIG_TIMER TIMER_ON_OUTPUT_COMPARE2
193 /// Debug timer interrupt using a strobe pin.
194 #define CONFIG_TIMER_STROBE 0
196 /// Enable ADS strobe.
197 #define CONFIG_ADC_STROBE 0
199 /// Enable watchdog timer.
200 #define CONFIG_WATCHDOG 1
202 /// EEPROM type for drv/eeprom.c
203 #define CONFIG_EEPROM_TYPE EEPROM_24XX256
205 /// Select bitmap pixel format.
206 #define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB
208 /// Enable line clipping algorithm.
209 #define CONFIG_GFX_CLIPPING 1
211 /// Enable text rendering in bitmaps.
212 #define CONFIG_GFX_TEXT 1
214 /// Enable virtual coordinate system.
215 #define CONFIG_GFX_VCOORDS 1
217 /// Keyboard polling method
218 #define CONFIG_KBD_POLL KBD_POLL_SOFTINT
220 /// Enable keyboard event delivery to observers
221 #define CONFIG_KBD_OBSERVER 0
224 #define CONFIG_KBD_BEEP 1
226 /// Enable long pression handler for keys
227 #define CONFIG_KBD_LONGPRESS 1
230 * \name Type for the chart dataset
233 #define CONFIG_CHART_TYPE_X uint8_t
234 #define CONFIG_CHART_TYPE_Y uint8_t
237 /// Enable button bar behind menus
238 #define CONFIG_MENU_MENUBAR 0
240 /// Enable smooth scrolling in menus
241 #define CONFIG_MENU_SMOOTH 1
243 /// Size of block for MD2 algorithm.
244 #define CONFIG_MD2_BLOCK_LEN 16
246 /// Use standard permutation in MD2 algorithm.
247 #define CONFIG_MD2_STD_PERM 0
249 /// Define a size, in byte, of entropy pool.
250 #define CONFIG_SIZE_ENTROPY_POOL 64
252 /// Turn on or off timer support in Randpool.
253 #define CONFIG_RANDPOOL_TIMER 1
255 #endif /* APPCONFIG_H */