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.1 2005/11/04 17:42:12 bernie
50 *#* Move cfg/config.h to appconfig.h.
52 *#* Revision 1.1 2005/04/11 19:04:13 bernie
53 *#* Move top-level headers to cfg/ subdir.
55 *#* Revision 1.5 2004/12/08 08:04:28 bernie
56 *#* Add missing config options.
58 *#* Revision 1.4 2004/08/25 14:12:08 rasky
59 *#* Aggiornato il comment block dei log RCS
61 *#* Revision 1.3 2004/08/24 14:30:11 bernie
62 *#* Use new-style config macros for drv/timer.c
64 *#* Revision 1.2 2004/08/05 18:46:52 bernie
65 *#* Documentation improvements.
67 *#* Revision 1.1 2004/07/29 23:34:32 bernie
68 *#* Add template configuration file.
72 #ifndef CONFIG_COMMON_H
73 #define CONFIG_COMMON_H
75 /*! Baud-rate for the kdebug console */
76 #define CONFIG_KDEBUG_BAUDRATE 19200
79 * printf()-style formatter configuration.
82 * \sa PRINTF_NOMODIFIERS
87 #define CONFIG_PRINTF PRINTF_FULL
90 * Multithreading kernel
94 #define CONFIG_KERNEL 0
97 * \name Serial driver parameters
100 /*! Size of the outbound FIFO buffer for all ports (bytes) */
101 #define CONFIG_SER_TXBUFSIZE 32
102 /*! Size of the inbound FIFO buffer for all ports (bytes) */
103 #define CONFIG_SER_RXBUFSIZE 64
105 /*! Default transmit timeout (ms). Set to -1 to disable timeout support */
106 #define CONFIG_SER_TXTIMEOUT -1
107 /*! Default receive timeout (ms). Set to -1 to disable timeout support */
108 #define CONFIG_SER_RXTIMEOUT -1
110 /*! Use RTS/CTS handshake */
111 #define CONFIG_SER_HWHANDSHAKE 0
113 /*! Default baud rate (set to 0 to disable) */
114 #define CONFIG_SER_DEFBAUDRATE 0
116 /*! Enable ser_gets() and ser_gets_echo() */
117 #define CONFIG_SER_GETS 0
120 * Transmit always something on serial port 0 TX
121 * to avoid interference when sending burst of data,
122 * using AVR multiprocessor serial mode
124 #define CONFIG_SER_TXFILL 0
126 #define CONFIG_SER_STROBE 0
130 * \name KBus configuration
133 /*! Board address for KBus */
134 #define CONFIG_KBUS_ADDR KBUS_ADDR_FOOBAR
136 /*! Disable KBUS escaping support */
137 #define CONFIG_KBUS_ESCAPE 0
139 /*! Serial port for internal KBUS communication */
140 #define CONFIG_KBUS_PORT 0
142 /*! Serial port speed for KBus communication */
143 #define CONFIG_KBUS_BAUDRATE 19200
146 //! Hardware timer selection for drv/timer.c
147 #define CONFIG_TIMER TIMER_ON_OUTPUT_COMPARE2
149 #define CONFIG_TIMER_STROBE 0
151 //! EEPROM type for drv/eeprom.c
152 #define CONFIG_EEPROM_TYPE EEPROM_24XX256
154 #endif /* CONFIG_COMMON_H */