pico]OS  1.1.0
poscfg.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2012, Dennis Kuschel.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote
15  * products derived from this software without specific prior written
16  * permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
19  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28  * OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  */
31 
32 
43 #ifndef _POSCFG_H
44 #define _POSCFG_H
45 
46 
47 /*---------------------------------------------------------------------------
48  * OS CORE SETTINGS
49  *-------------------------------------------------------------------------*/
50 
61 #define POSCFG_MAX_PRIO_LEVEL 8
62 
72 #define POSCFG_TASKS_PER_PRIO 8
73 
87 #define POSCFG_MAX_TASKS 16
88 
100 #define POSCFG_MAX_EVENTS 16
101 
115 #define POSCFG_MAX_MESSAGES 8
116 
127 #define POSCFG_MAX_TIMER 4
128 
154 #define POSCFG_ROUNDROBIN 1
155 
169 #define POSCFG_SOFT_MTASK 1
170 
178 #define POSCFG_CTXSW_COMBINE 10
179 
188 #define POSCFG_REALTIME_PRIO 0
189 
196 #define POSCFG_TASKCB_USERSPACE 0
197 
206 #define POSCFG_MSG_MEMORY 1
207 
214 #define POSCFG_MSG_BUFSIZE 80
215 
230 #define POSCFG_SOFTINTERRUPTS 8
231 
243 #define POSCFG_SOFTINTQUEUELEN 20
244 
249 #define HZ 18 /* timer ticks per second */
250 
255 /*---------------------------------------------------------------------------
256  * PERFORMANCE / CODE SIZE / DEBUG SETTINGS
257  *-------------------------------------------------------------------------*/
258 
269 #define POSCFG_FASTCODE 1
270 
276 #define POSCFG_SMALLCODE 1
277 
296 #ifdef _DBG
297 #define POSCFG_ARGCHECK 2
298 #else
299 #define POSCFG_ARGCHECK 1
300 #endif
301 
306 /*---------------------------------------------------------------------------
307  * DEFINE FEATURES TO INCLUDE
308  *-------------------------------------------------------------------------*/
309 
319 #define POSCFG_FEATURE_YIELD 1
320 
325 #define POSCFG_FEATURE_SLEEP 1
326 
331 #define POSCFG_FEATURE_EXIT 1
332 
337 #define POSCFG_FEATURE_GETPRIORITY 1
338 
343 #define POSCFG_FEATURE_SETPRIORITY 1
344 
349 #define POSCFG_FEATURE_SEMAPHORES 1
350 
356 #define POSCFG_FEATURE_SEMADESTROY 1
357 
363 #define POSCFG_FEATURE_SEMAWAIT 1
364 
369 #define POSCFG_FEATURE_MUTEXES 1
370 
376 #define POSCFG_FEATURE_MUTEXDESTROY 1
377 
383 #define POSCFG_FEATURE_MUTEXTRYLOCK 1
384 
389 #define POSCFG_FEATURE_GETTASK 1
390 
395 #define POSCFG_FEATURE_TASKUNUSED 1
396 
401 #define POSCFG_FEATURE_MSGBOXES 1
402 
408 #define POSCFG_FEATURE_MSGWAIT 1
409 
414 #define POSCFG_FEATURE_INHIBITSCHED 1
415 
420 #define POSCFG_FEATURE_JIFFIES 1
421 
426 #define POSCFG_FEATURE_TIMER 1
427 
433 #define POSCFG_FEATURE_TIMERDESTROY 1
434 
440 #define POSCFG_FEATURE_TIMERFIRED 1
441 
446 #define POSCFG_FEATURE_FLAGS 1
447 
453 #define POSCFG_FEATURE_FLAGDESTROY 1
454 
460 #define POSCFG_FEATURE_FLAGWAIT 1
461 
466 #define POSCFG_FEATURE_SOFTINTS 1
467 
473 #define POSCFG_FEATURE_SOFTINTDEL 1
474 
479 #define POSCFG_FEATURE_IDLETASKHOOK 1
480 
485 #define POSCFG_FEATURE_ATOMICVAR 1
486 
490 #define POSCFG_FEATURE_ERRNO 1
491 
496 #define POSCFG_FEATURE_LISTS 1
497 
503 #define POSCFG_FEATURE_LISTJOIN 1
504 
510 #define POSCFG_FEATURE_LISTLEN 1
511 
518 #define POSCFG_FEATURE_DEBUGHELP 0
519 
526 #define POSCFG_FEATURE_POWER 0
527 
533 #define POSCFG_FEATURE_TICKLESS 1
534 
537 #endif /* _POSCFG_H */