2021-11-18 17:17:04 +01:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
if TEST_KCONFIG
|
|
|
|
|
|
|
|
config MODULE_ESP_RTC_TIMER_32K
|
|
|
|
bool
|
|
|
|
depends on HAS_ESP_RTC_TIMER_32K
|
2022-06-08 16:47:33 +02:00
|
|
|
default y if MODULE_PERIPH_RTT
|
2021-11-18 17:17:04 +01:00
|
|
|
help
|
|
|
|
Use RTC timer with external 32.768 kHz crystal as RTT.
|
|
|
|
|
|
|
|
config MODULE_PERIPH_RTT_HW_SYS
|
|
|
|
bool
|
|
|
|
default y if MODULE_PERIPH_RTT
|
|
|
|
|
|
|
|
config MODULE_PERIPH_RTT_HW_RTC
|
|
|
|
bool
|
|
|
|
default y if MODULE_PERIPH_RTT
|
|
|
|
|
2022-02-04 08:23:45 +01:00
|
|
|
config MODULE_ESP_HW_COUNTER
|
2022-07-18 09:52:26 +02:00
|
|
|
bool "Use hardware counter as low-level timer peripheral"
|
2022-06-18 18:57:19 +02:00
|
|
|
depends on HAS_ESP_HW_COUNTER
|
2022-02-04 08:23:45 +01:00
|
|
|
depends on MODULE_PERIPH_TIMER
|
2022-07-18 09:52:26 +02:00
|
|
|
help
|
|
|
|
ESP SoCs with Xtensa cores typically have a set of CCOUNT and CCOMPARE
|
|
|
|
registers that can be used as low-level timer peripherals. Use this
|
|
|
|
option to enable these CCOUNT and CCOMPARE register as low-level timer.
|
2022-02-04 08:23:45 +01:00
|
|
|
|
2022-12-31 14:23:00 +01:00
|
|
|
choice ESP_FLASHPAGE_CAPACITY
|
|
|
|
bool "Flashpage capacity"
|
|
|
|
default ESP_FLASHPAGE_CAPACITY_512K
|
|
|
|
depends on MODULE_PERIPH_FLASHPAGE
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_64K
|
|
|
|
bool "64 kByte"
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_128K
|
|
|
|
bool "128 kByte"
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_256K
|
|
|
|
bool "256 kByte"
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_512K
|
|
|
|
bool "512 kByte"
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_1M
|
|
|
|
bool "1 MByte"
|
|
|
|
config ESP_FLASHPAGE_CAPACITY_2M
|
|
|
|
bool "2 MByte"
|
|
|
|
endchoice
|
|
|
|
|
2021-11-18 17:17:04 +01:00
|
|
|
endif # TEST_KCONFIG
|