1# LoRaWAN Non Volatile Memory configuration options 2 3# Copyright (c) 2022 Intellinium <giuliano.franchetto@intellinium.com> 4# SPDX-License-Identifier: Apache-2.0 5 6choice LORAWAN_NVM 7 bool "LoRaWAN NVM backend" 8 default LORAWAN_NVM_SETTINGS if SETTINGS 9 default LORAWAN_NVM_NONE 10 11config LORAWAN_NVM_NONE 12 bool "No NVM backend for LoRaWAN" 13 help 14 If this configuration is used, it is the responsibility of the 15 application to store and restore the DevNonce value each time 16 a OTAA join request is sent. This value should be used in the 17 join configuration directly. 18 19config LORAWAN_NVM_SETTINGS 20 bool "Settings based NVM" 21 depends on SETTINGS 22 23endchoice 24