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