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