1menu "Task module Configuration" 2 3config OS_OPTION_TASK 4 bool "Whether support task module or not" 5 default n 6 7menu "TASK features configuration" 8 depends on OS_OPTION_TASK 9 10config OS_OPTION_TASK_DELETE 11 bool "Whether support task delete feature or not" 12 default n 13 14config OS_OPTION_TASK_SUSPEND 15 bool "Whether support suspend task feature or not" 16 default n 17 18config OS_OPTION_TASK_INFO 19 bool "Whether support get task information or not" 20 default n 21 22config OS_OPTION_TASK_YIELD 23 bool "Whether support task yield feature or not" 24 default n 25 help 26 if OS_OPTION_TASK_YIELD=y,when taskdelay(0),can sch task to end list 27 28endmenu 29 30config OS_TSK_PRIORITY_HIGHEST 31 int "The highest priority" 32 default 0 33 34config OS_TSK_PRIORITY_LOWEST 35 int "The lowest priority" 36 default 31 37 38config OS_TSK_NUM_OF_PRIORITIES 39 int "The number of priority" 40 default 32 41 42config OS_TSK_CORE_BYTES_IN_PID 43 int "The number of bytes used to indicate core ID in PID " 44 default 3 45 46endmenu 47