4 * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
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.7 2006/02/17 22:28:19 bernie
50 *#* Add missing UART definitions.
52 *#* Revision 1.6 2006/02/15 09:12:56 bernie
53 *#* Switch to BITMAP_FMT_PLANAR_V_LSB.
55 *#* Revision 1.5 2006/02/10 12:34:33 bernie
56 *#* Add missing config options for gfx and kbd.
58 *#* Revision 1.4 2006/01/23 23:12:27 bernie
59 *#* Enable CONFIG_GFX_VCOORDS.
61 *#* Revision 1.3 2006/01/17 02:30:06 bernie
62 *#* Add new config vars.
64 *#* Revision 1.2 2005/11/27 03:04:57 bernie
65 *#* CONFIG_WATCHDOG: New config option.
67 *#* Revision 1.1 2005/11/04 17:42:12 bernie
68 *#* Move cfg/config.h to appconfig.h.
70 *#* Revision 1.1 2005/04/11 19:04:13 bernie
71 *#* Move top-level headers to cfg/ subdir.
73 *#* Revision 1.5 2004/12/08 08:04:28 bernie
74 *#* Add missing config options.
76 *#* Revision 1.4 2004/08/25 14:12:08 rasky
77 *#* Aggiornato il comment block dei log RCS
79 *#* Revision 1.3 2004/08/24 14:30:11 bernie
80 *#* Use new-style config macros for drv/timer.c
82 *#* Revision 1.2 2004/08/05 18:46:52 bernie
83 *#* Documentation improvements.
85 *#* Revision 1.1 2004/07/29 23:34:32 bernie
86 *#* Add template configuration file.
90 #ifndef CONFIG_COMMON_H
91 #define CONFIG_COMMON_H
93 /*! Baud-rate for the kdebug console */
94 #define CONFIG_KDEBUG_BAUDRATE 19200
97 * printf()-style formatter configuration.
100 * \sa PRINTF_NOMODIFIERS
105 #define CONFIG_PRINTF PRINTF_FULL
108 * Multithreading kernel
110 * /sa config_kernel.h
112 #define CONFIG_KERNEL 0
115 * \name Serial driver parameters
118 /*! [bytes] Size of the outbound FIFO buffer for port 0. */
119 #define CONFIG_UART0_TXBUFSIZE 32
121 /*! [bytes] Size of the inbound FIFO buffer for port 0. */
122 #define CONFIG_UART0_RXBUFSIZE 64
124 /*! [bytes] Size of the outbound FIFO buffer for port 1. */
125 #define CONFIG_UART1_TXBUFSIZE 32
127 /*! [bytes] Size of the inbound FIFO buffer for port 1. */
128 #define CONFIG_UART1_RXBUFSIZE 64
130 /*! Default transmit timeout (ms). Set to -1 to disable timeout support */
131 #define CONFIG_SER_TXTIMEOUT -1
133 /*! Default receive timeout (ms). Set to -1 to disable timeout support */
134 #define CONFIG_SER_RXTIMEOUT -1
136 /*! Use RTS/CTS handshake */
137 #define CONFIG_SER_HWHANDSHAKE 0
139 /*! Default baud rate (set to 0 to disable) */
140 #define CONFIG_SER_DEFBAUDRATE 0
142 /*! Enable ser_gets() and ser_gets_echo() */
143 #define CONFIG_SER_GETS 0
145 /** Enable second serial port in emulator. */
146 #define CONFIG_EMUL_UART1 0
149 * Transmit always something on serial port 0 TX
150 * to avoid interference when sending burst of data,
151 * using AVR multiprocessor serial mode
153 #define CONFIG_SER_TXFILL 0
155 #define CONFIG_SER_STROBE 0
159 * \name KBus configuration
162 /*! Board address for KBus */
163 #define CONFIG_KBUS_ADDR KBUS_ADDR_FOOBAR
165 /*! Disable KBUS escaping support */
166 #define CONFIG_KBUS_ESCAPE 0
168 /*! Serial port for internal KBUS communication */
169 #define CONFIG_KBUS_PORT 0
171 /*! Serial port speed for KBus communication */
172 #define CONFIG_KBUS_BAUDRATE 19200
175 //! Hardware timer selection for drv/timer.c
176 #define CONFIG_TIMER TIMER_ON_OUTPUT_COMPARE2
178 //! Debug timer interrupt using a strobe pin.
179 #define CONFIG_TIMER_STROBE 0
181 //! Enable watchdog timer.
182 #define CONFIG_WATCHDOG 1
184 //! EEPROM type for drv/eeprom.c
185 #define CONFIG_EEPROM_TYPE EEPROM_24XX256
187 /// Select bitmap pixel format.
188 #define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB
190 /// Enable line clipping algorithm.
191 #define CONFIG_GFX_CLIPPING 1
193 /// Enable text rendering in bitmaps.
194 #define CONFIG_GFX_TEXT 1
196 /// Enable virtual coordinate system.
197 #define CONFIG_GFX_VCOORDS 1
199 /// Keyboard polling method
200 #define CONFIG_KBD_POLL KBD_POLL_SOFTINT
202 /// Enable button bar behind menus
203 #define CONFIG_MENU_MENUBAR 0
205 #endif /* CONFIG_COMMON_H */