⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 os_cfg.h

📁 This code ports the uC/OS operating system by Jean LaBrosse to the TI TMS320C2xx family of DSP s.
💻 H
字号:
#ifndef	OS_CFG_H
#define	OS_CFG_H


/*
 * uC/OS CONFIGURATION
 */

#define OS_MAX_TASKS             63    /* Maximum number of tasks in your application                  */
#define OS_MAX_EVENTS            20    /* Maximum number of event control blocks in your application   */
#define OS_MAX_QS                 5    /* Maximum number of queue control blocks in your application   */

/*
 * The TMS320C2XX stack grows up!
 */
#define	OS_TASK_IDLE_STK_SIZE	300		/* Idle task stack size (WORD's)                                */
#define	OS_TASK_IDLE_STK_TOP	0		/* Index into task top of stack.  								*/

#define OS_TASK_CHANGE_PRIO_EN    1    /* Include code for OSTaskChangePrio()                          */
#define OS_TASK_DEL_EN            1    /* Include code for OSTaskDel()                                 */
#define OS_SEM_EN                 1    /* Include code for SEMAPHORES                                  */
#define OS_MBOX_EN                1    /* Include code for MAILBOXES                                   */
#define OS_Q_EN                   1    /* Include code for QUEUES                                      */
#define OS_TASK_SUSPEND_EN        1    /* Include code for OSTaskSuspend() and OSTaskResume()          */

#define uCOS                   31		/* Context switch trap number */


#endif	/*	OS_CFG_H	*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -