-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathKconfig
93 lines (74 loc) · 1.87 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
menu "Project Ocre options"
source "Kconfig.zephyr"
config OCRE
bool "Project Ocre"
default y
help
Enable the Project Ocre runtime.
select PRINTK
select EVENTS
select EVENTFD
select FLASH
select FLASH_MAP
select FLASH_PAGE_LAYOUT
select FILE_SYSTEM
select FILE_SYSTEM_LITTLEFS
select REBOOT
select SETTINGS
select SETTINGS_RUNTIME
select NETWORKING
select NET_SOCKETS
select NET_CONNECTION_MANAGER
select NET_UDP
select SMF
select SMF_ANCESTOR_SUPPORT
select SMF_INITIAL_TRANSITION
# Enable the WASM Micro Runtime
select WAMR
config OCRE_WAMR_HEAP_BUFFER_SIZE
int "WAMR heap buffer size in bytes"
default 32768
help
A static memory allocation for WAMR to use as a heap.
config OCRE_CONTAINER_DEFAULT_HEAP_SIZE
int "Default value for the container heap size"
default 4096
help
The default value used for a container's heap size.
config OCRE_CONTAINER_DEFAULT_STACK_SIZE
int "Default value for the container stack size"
default 2048
help
The default value used for a container's stack size.
config OCRE_LOG_DEBUG
bool "Debug logging"
default n
help
Enable Ocre debug logging
if OCRE
module = OCRE
module-str = OCRE
source "subsys/logging/Kconfig.template.log_config"
endif
config RNG_SENSOR
bool "RNG Sensor"
default n
depends on SENSOR
help
Enable support for the custom RNG sensor.
config OCRE_WAMR_HEAP_BUFFER_SIZE
int "WAMR heap buffer size in bytes"
default 32768
help
A static memory allocation for WAMR to use as a heap.
config OCRE_CONTAINER_DEFAULT_HEAP_SIZE
int "Default value for the container heap size"
default 4096
help
The default value used for a container's heap size.
config OCRE_CONTAINER_DEFAULT_STACK_SIZE
int "Default value for the container stack size"
default 2048
help
The default value used for a container's stack size.
endmenu