There currently is no practical use to have TactilityHeadless as a subproject. I'm merging it with the Tactility project.
18 lines
434 B
C++
18 lines
434 B
C++
#include "Tactility/hal/Device.h"
|
|
#include "Tactility/hal/sdcard/SdCardDevice.h"
|
|
|
|
namespace tt::hal::sdcard {
|
|
|
|
std::shared_ptr<SdCardDevice> _Nullable find(const std::string& path) {
|
|
auto sdcards = findDevices<SdCardDevice>(Device::Type::SdCard);
|
|
for (auto& sdcard : sdcards) {
|
|
if (sdcard->isMounted() && path.starts_with(sdcard->getMountPath())) {
|
|
return sdcard;
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
}
|