-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
27 lines (23 loc) · 862 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
menu "AsyncRTOS"
config AOS_TASK_QUEUESIZEDEFAULT
int "Default queue size"
default 3
help
The default queue size for new tasks.
Queue size can also be adjusted individually for each task in the
aos_task_config_t struct.
config AOS_TASK_STACKSIZEDEFAULT
int "Default stack size"
default 3072
help
The default stack size for new tasks and spawns.
Stack size can also be adjusted individually for each task in the
aos_task_config_t struct.
config AOS_TASK_PRIORITYDEFAULT
int "Default priority"
default 1
help
The default priority for new tasks and spawns.
Priority can also be adjusted individually for each task in the
aos_task_config_t struct.
endmenu