-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathKconfig
More file actions
executable file
·35 lines (29 loc) · 844 Bytes
/
Copy pathKconfig
File metadata and controls
executable file
·35 lines (29 loc) · 844 Bytes
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
28
29
30
31
32
33
34
35
menu "Button Configuration"
config BUTTON_NUM_MAX
int "Button maximum number"
default 4
help
Set maximum number of buttons allowed.
config BUTTON_TICK_MS
int "Button Tick"
default 10
help
Set the button FSM tick time in ms.
menu "Dispatcher"
config BUTTON_TASK_PRIORITY
int "Button task priority"
default 1
help
Set the dispatcher task priority.
config BUTTON_TASK_STACK_SIZE
int "Button task stack size"
default 4096
help
Set the dispatcher task stack size.
config BUTTON_QUEUE_LEN
int "Button queue lenght"
default 10
help
Set the dispatcher queue items length.
endmenu
endmenu