Add initial support for LilyGO T-HMI S3 with device configuration and… (#509)

This commit is contained in:
Rivair Sabino dos Santos
2026-03-03 18:38:42 -03:00
committed by GitHub
parent 33caf09856
commit 2426c387eb
14 changed files with 292 additions and 0 deletions
@@ -0,0 +1,15 @@
#pragma once
#include <driver/gpio.h>
#include "Tactility/hal/sdcard/SdCardDevice.h"
using tt::hal::sdcard::SdCardDevice;
constexpr auto SD_DIO_CMD = GPIO_NUM_11;
constexpr auto SD_DIO_SCLK = GPIO_NUM_12;
constexpr auto SD_DIO_DATA0 = GPIO_NUM_13;
constexpr auto SD_DIO_NC = GPIO_NUM_NC;
constexpr auto SD_DIO_BUS_WIDTH = 1;
std::shared_ptr<SdCardDevice> createSdCard();