4 * This file is part of BeRTOS.
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.
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.
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
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.
29 * Copyright 2001,2004 Develer S.r.l. (http://www.develer.com/)
30 * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
34 * \brief Kernel configuration parameters
38 * \author Bernardo Innocenti <bernie@develer.com>
43 *#* Revision 1.8 2006/07/19 12:56:24 bernie
44 *#* Convert to new Doxygen style.
46 *#* Revision 1.7 2006/02/21 16:05:53 bernie
47 *#* Move from cfg/ to top-level.
49 *#* Revision 1.3 2005/11/04 16:20:01 bernie
50 *#* Fix reference to README.devlib in header.
52 *#* Revision 1.2 2005/04/11 19:10:27 bernie
53 *#* Include top-level headers from cfg/ subdir.
55 *#* Revision 1.1 2005/04/11 19:04:13 bernie
56 *#* Move top-level headers to cfg/ subdir.
58 *#* Revision 1.5 2004/08/25 14:12:08 rasky
59 *#* Aggiornato il comment block dei log RCS
61 *#* Revision 1.4 2004/08/24 16:19:38 bernie
62 *#* Add missing header.
64 *#* Revision 1.3 2004/07/30 14:24:16 rasky
65 *#* Task switching con salvataggio perfetto stato di interrupt (SR)
66 *#* Kernel monitor per dump informazioni su stack dei processi
68 *#* Revision 1.2 2004/06/03 11:27:09 bernie
69 *#* Add dual-license information.
71 *#* Revision 1.1 2004/05/23 17:48:35 bernie
72 *#* Add top-level files.
78 #include <cfg/arch_config.h> /* ARCH_EMUL */
81 * \name Modules activation
85 /* Module/option Active Dependencies */
86 #define CONFIG_KERN_SCHED (1)
87 #define CONFIG_KERN_SIGNALS (1 && CONFIG_KERN_SCHED)
88 #define CONFIG_KERN_TIMER (1)
89 #define CONFIG_KERN_HEAP (0)
90 #define CONFIG_KERN_SEMAPHORES (0 && CONFIG_KERN_SIGNALS)
91 #define CONFIG_KERN_MONITOR (1 && CONFIG_KERN_SCHED)
95 #define CONFIG_KERN_PREEMPTIVE (0 && CONFIG_KERN_SCHED && CONFIG_KERN_TIMER)
97 #define CONFIG_KERN_QUANTUM 50 /**< Time sharing quantum in timer ticks. */
99 #if (ARCH & ARCH_EMUL)
100 #define CONFIG_KERN_DEFSTACKSIZE 65536
102 #define CONFIG_KERN_DEFSTACKSIZE 1024 /**< Default stack size for each thread. */
105 /* Memory fill codes to help debugging */
106 #if CONFIG_KERN_MONITOR
107 #define CONFIG_KERN_STACKFILLCODE 0xA5A5
108 #define CONFIG_KERN_MEMFILLCODE 0xDBDB
112 #endif /* CONFIG_KERN_H */