twl_wrapsdk/build/tests/el/el-1/ARM7/src/sample1.h
shirait 9dd92e3eee add el (tentative)
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@154 4ee2a332-4b2b-5046-8439-1ba90f034370
2007-07-02 08:08:08 +00:00

28 lines
554 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 各タスクの優先度の定義
*/
#define MAIN_PRIORITY 5 /* メインタスクの優先度 */
/* HIGH_PRIORITY より高くすること */
#define HIGH_PRIORITY 9 /* 並列に実行されるタスクの優先度 */
#define MID_PRIORITY 10
#define LOW_PRIORITY 11
/*
* ターゲット依存の定義CPU例外ハンドラの起動方法など
*/
#ifndef STACK_SIZE
#define STACK_SIZE (8192) /* タスクのスタックサイズ */
#endif /* STACK_SIZE */
/*
* 関数のプロトタイプ宣言
*/
#ifndef _MACRO_ONLY
//extern void main_task(VP_INT exinf);
#endif /* _MACRO_ONLY */