mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
6c3e7c5db7
Module `esp_idf_nvs_flash` uses C++ code. Since `esp_idf_nvs_flash` module is always enabled on ESP8266, the permanent dependency on `cpp` is correct. But on ESP32, the `esp_idf_nvs_flash` module is only enabled if `esp_wifi_any` is used. Only in that case the compilation should depend on module `cpp`.
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
# Copyright (c) 2021 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config MODULE_ESP_IDF_NVS_FLASH
|
|
bool
|
|
depends on TEST_KCONFIG
|
|
depends on MODULE_ESP_IDF
|
|
select MODULE_CPP
|
|
select MODULE_MTD
|
|
help
|
|
Non-volatile storage library.
|