forked from onomondo/nrf-softsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
43 lines (34 loc) · 1.1 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
config SOFTSIM
bool "SoftSIM"
depends on NVS
depends on FLASH
depends on FLASH_MAP
depends on FLASH_PAGE_LAYOUT
depends on MPU_ALLOW_FLASH_WRITE
depends on BUILD_WITH_TFM
if SOFTSIM
config SOFTSIM_AUTO_INIT
bool "Automatically initialize SoftSIM"
default y
help
Automatically initialize SoftSIM when the modem is powered on.
config SOFTSIM_DEBUG
bool "Enable debug messages for SoftSIM"
default n
config SOFTSIM_STATIC_PROFILE_ENABLE
bool "Enable static profile"
default n
help
Enable static profile to use for SoftSIM. Developement only.
config SOFTSIM_STATIC_PROFILE
string "Static profile"
depends on SOFTSIM_STATIC_PROFILE_ENABLE
help
Static profile to use for SoftSIM. If empty, the profile should be passed during runtime (just once via nrf_softsim_provision)
config SOFTSIM_BUNDLE_TEMPLATE_HEX
bool "Automatically bundle the template profile hex into the application"
default n
endif #SOFTSIM
module = SOFTSIM
module-str = Onomondo-SoftSIM
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"