Add initial support for LilyGO T-HMI S3 with device configuration and… (#509)
This commit is contained in:
committed by
GitHub
parent
33caf09856
commit
2426c387eb
@@ -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();
|
||||
Reference in New Issue
Block a user