-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
51 lines (42 loc) · 1.71 KB
/
Copy pathKconfig
File metadata and controls
51 lines (42 loc) · 1.71 KB
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
#
# Copyright (c) 2026 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menu "Nordic Wi-Fi WebDash"
config APP_WIFI_SSID
string "Wi-Fi SoftAP SSID"
default "WebDash_AP"
help
SSID of the Wi-Fi SoftAP to create. Override this value in
overlay-wifi-credentials.conf (listed in .gitignore) to avoid committing
production credentials.
config APP_WIFI_PASSWORD
string "Wi-Fi SoftAP Password"
default "12345678"
help
Password for Wi-Fi SoftAP (min 8 characters for WPA2). Provide real
credentials via the local overlay-wifi-credentials.conf to keep secrets
out of version control.
config APP_HTTP_PORT
int "HTTP Server Port"
default 80
help
HTTP server port number
# mode_selector and network Kconfig now provided by zego/wifi_app_main and
# zego/network (EXTRA_ZEPHYR_MODULES) — no rsource needed here.
# button and led Kconfig registered via EXTRA_ZEPHYR_MODULES (zego/button, zego/led)
rsource "src/modules/webserver/Kconfig.webserver"
# memonitor Kconfig now provided by zego/bricks/memonitor (EXTRA_ZEPHYR_MODULES)
rsource "src/modules/ux/Kconfig"
# Silence the v3.3.0 "Deprecated symbol MBEDTLS_LEGACY_CRYPTO_C" Kconfig
# warning. The application enables MBEDTLS_LEGACY_CRYPTO_C in prj.conf to
# keep the WPA supplicant RSA path available and to expose
# MBEDTLS_MEMORY_DEBUG to the heap_monitor module (the PSA-only crypto path
# in nrf_security/cmake/nrf_config.cmake does not forward this symbol to
# nrf-config.h). The SDK-provided _SILENCE_DEPRECATION knob is promptless,
# so it must be selected from a Kconfig file rather than set in prj.conf.
config MBEDTLS_LEGACY_CRYPTO_C_SILENCE_DEPRECATION
default y if MBEDTLS_LEGACY_CRYPTO_C
endmenu
source "Kconfig.zephyr"