source: asp_wo_cfg/trunk/sample/kernel_cfg.h@ 164

Last change on this file since 164 was 49, checked in by ertl-hiro, 12 years ago

asp_wo_kernelをコミット。

  • Property svn:keywords set to Id
File size: 722 bytes
Line 
1#ifndef TOPPERS_KERNEL_CFG_H
2#define TOPPERS_KERNEL_CFG_H
3
4/*
5 * 各カーネルオブジェクトの最大登録数
6 *
7 * シリアルドライバのTNUM_PORTが2の場合に合わせてある.
8 */
9#define TNUM_TSKID 5 /* タスクの数 */
10#define TNUM_SEMID 4 /* セマフォの数 */
11#define TNUM_FLGID 0 /* イベントフラグ */
12#define TNUM_DTQID 0 /* データキュー */
13#define TNUM_PDQID 0 /* 優先度データキュー */
14#define TNUM_MBXID 0 /* メールボックス */
15#define TNUM_MPFID 0 /* 固定長メモリプール */
16#define TNUM_CYCID 1 /* 周期ハンドラ */
17#define TNUM_ALMID 1 /* アラームハンドラ */
18#define TNUM_ISRID 1 /* 割込みサービスルーチン */
19
20/*
21 * カーネルが割り付けるメモリ領域のサイズ
22 */
23#define KMM_SIZE (SIGSTKSZ * 16)
24
25#endif /* TOPPERS_KERNEL_CFG_H */
Note: See TracBrowser for help on using the repository browser.