diff options
author | Maël Gassmann <mael.gassmann@students.bfh.ch> | 2024-09-28 18:05:02 +0200 |
---|---|---|
committer | Maël Gassmann <mael.gassmann@students.bfh.ch> | 2024-09-28 18:06:43 +0200 |
commit | 129a2650c22915bc789b6bdbc9d360bd97059e2f (patch) | |
tree | 2cc012bc5ec48ab2596a5c9f1366b71df3484a3e /main/Kconfig.projbuild | |
parent | 6ebf9d86d095604b9357abc8da1a1a6673856fa8 (diff) |
[+] WiFi with dpp on first setup + SNTP
Diffstat (limited to 'main/Kconfig.projbuild')
-rw-r--r-- | main/Kconfig.projbuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/main/Kconfig.projbuild b/main/Kconfig.projbuild index 18b0727..4ff3093 100644 --- a/main/Kconfig.projbuild +++ b/main/Kconfig.projbuild @@ -145,4 +145,35 @@ menu "Configuration of the Nixie Screen" help Pin number for N3_P3. + config ESP_DPP_LISTEN_CHANNEL_LIST + string "DPP Listen channel list" + default "6" + help + DPP Bootstrapping listen channels separated by commas. + + config ESP_DPP_BOOTSTRAPPING_KEY + string "Bootstrapping key" + help + 64 hex digits (or 32 bytes) of raw private key for DPP Bootstrapping. + + config ESP_DPP_DEVICE_INFO + string "Additional Device Info" + help + Additional ancillary information to be included in QR Code. + + config SNTP_TIME_SERVER + string "SNTP server name" + default "pool.ntp.org" + help + Hostname of the main SNTP server. + + choice SNTP_TIME_SYNC_METHOD + prompt "Time synchronization method" + default SNTP_TIME_SYNC_METHOD_IMMED + help + Time synchronization method. + + config SNTP_TIME_SYNC_METHOD_IMMED + bool "update time immediately when received" + endchoice endmenu
\ No newline at end of file |