1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-19 19:43:52 +01:00
2025-07-28 18:57:01 +02:00

38 lines
1.3 KiB
Plaintext

# SPDX-FileCopyrightText: 2020 HAW Hamburg
# SPDX-FileCopyrightText: 2022 Gunar Schorcht
# SPDX-License-Identifier: LGPL-2.1-only
config BOARD
default "esp32s2-lilygo-ttgo-t8" if BOARD_ESP32S2_LILYGO_TTGO_T8
config BOARD_ESP32S2_LILYGO_TTGO_T8
bool
default y
select BOARD_COMMON_ESP32S2
select CPU_MODEL_ESP32S2
menu "LILYGO TTGO T8 ESP32-S2 Board configurations"
depends on BOARD_ESP32S2_LILYGO_TTGO_T8
config ESP32S2_LILYGO_TTGO_T8_USB
bool "USB interface is used instead of USB-to-UART bridge"
help
The USB D-/D+ signals are connected via DIP switches either to the
USB-to-UART bridge (default) or to GPIO19/GPIO20 of the ESP32-S2.
To use the USB interface of the ESP32-S2, the USB D-/D+ signals
must be connected to GPIO19 and GPIO20 and this option has to be
enabled.
config ESP32S2_LILYGO_TTGO_T8_32K_XTAL
bool "32.768 kHz crystal is used"
default y
help
GPIO15 and GPIO16 of the ESP32-S2 are connected via DIP switches
either with the on-board 32.768 kHz crystal (default) or the
according pins at the extension headers. If the pins at the
extension headers are used instead, disable this option.
endmenu
source "$(RIOTBOARD)/common/esp32s2/Kconfig"