Basic working SD card.'

This commit is contained in:
2026-08-09 18:34:23 -06:00
parent 8a44887b6f
commit 0014e8697f
10 changed files with 364 additions and 22 deletions
+3 -1
View File
@@ -2,13 +2,14 @@
#include <Arduino.h>
#include "../core/storage_state.h"
#include "../storage/sd_manager.h"
class StorageTask
{
public:
StorageTask(SDManager& manager);
StorageTask(SDManager& manager, StorageState& state);
void start();
@@ -17,6 +18,7 @@ private:
void run();
SDManager& storage;
StorageState& storageState;
TaskHandle_t taskHandle = nullptr;
};