1# Copyright (c) 2018-2020 O.S.Systems 2# SPDX-License-Identifier: Apache-2.0 3 4mainmenu "Sample app Configuration" 5 6config UPDATEHUB_SAMPLE_MANUAL 7 bool "UpdateHub manual mode" 8 help 9 Manual mode requires the user to call the server probe and then, if 10 there is an available update, also requires the user to decide if 11 it is appropriate to update now or later. 12 13if !UPDATEHUB_SAMPLE_MANUAL 14config UPDATEHUB_SAMPLE_POLLING 15 bool "UpdateHub polling mode" 16 default y 17 help 18 Polling mode runs automatically on a predefined period, probing the 19 server for updates and installing them without requiring user 20 intervention. 21endif #!UPDATEHUB_SAMPLE_MANUAL 22 23if WIFI 24config UPDATEHUB_SAMPLE_WIFI_SSID 25 string "WIFI SSID - Network name" 26 default "my_network" 27config UPDATEHUB_SAMPLE_WIFI_PSK 28 string "WIFI PSK - Network password key" 29 default "secret_passwd" 30endif 31 32source "Kconfig.zephyr" 33