-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
70 lines (59 loc) · 1.36 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
menu "Alturia"
config SERVOS
bool "Enable servo support"
default $(dt_has_compat,servos)
menu "Datalogger"
module := DATALOGGER
module-str := Datalogger
rsource "Kconfig.loglevel"
config DATALOGGER_THREAD_PRIORITY
int "Datalogger thread priority"
default 0
config DATALOGGER_STACK_SIZE
int "Stack size for datalogger thread"
default 2048
config DATALOGGER_BUFFER_SIZE
int "Buffer size in bytes"
default 1024
help
Buffer size for internal datalogger memory allocations
endmenu
menuconfig PYROS
bool "Pyros"
default $(dt_has_compat, pyros)
if PYROS
config PYROS_ON_TIME
int "On time"
default 1000
help
Pyro on time in milliseconds
endif
menu "DAQ"
module := DAQ
module-str := DAQ
rsource "Kconfig.loglevel"
config DAQ_PRIO
int "Priority of daq thread"
default 0
config SENSOR_DAQ_STACK_SIZE
int "Stack size for sensor daq threads"
default 512
endmenu
menu "Lua"
config LUA_WORKER_PRIO
int "Priority of lua work handler"
default 0
endmenu
menu "Event system"
config EVENT_HANDLER_THREAD_STACK_SIZE
int "Stack size of async event handler thread"
default 2048
config EVENT_QUEUE_LENGTH
int "Maximum number of enqueued async events"
default 256
config EVENT_TIMERS_NUMBER
int "Maximum number of event timers"
default 8
endmenu
endmenu
source "$ZEPHYR_BASE/Kconfig"