#include "SdCard.h" #include #include using tt::hal::sdcard::SpiSdCardDevice; std::shared_ptr createSdCard() { auto configuration = std::make_unique( GPIO_NUM_5, GPIO_NUM_NC, GPIO_NUM_NC, GPIO_NUM_NC, SdCardDevice::MountBehaviour::AtBoot, tt::lvgl::getSyncLock(), std::vector(), SPI3_HOST ); return std::make_shared( std::move(configuration) ); }