Merge remote-tracking branch 'origin/main'

This commit is contained in:
Adolfo Reyna
2026-06-28 21:13:35 -04:00
222 changed files with 1713 additions and 2257 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
#include <memory.h>
#include <string.h>
#include <Tactility/Lock.h>
namespace tt::hal::sdcard {
/**
* Attempt to find an SD card that the specified belongs to,
* and returns its lock if the SD card is mounted. Otherwise it returns nullptr.
* @param[in] a path on a file system (e.g. file, directory, etc.)
* @return the lock of a mounted SD card or otherwise null
*/
std::shared_ptr<Lock> findSdCardLock(const std::string& path);
void mountAll();
}
@@ -1,7 +0,0 @@
#pragma once
namespace tt::hal::sdcard {
void mountAll();
}