add driver

This commit is contained in:
2025-12-07 18:20:08 -06:00
parent 68842bbe0f
commit 8e9d459345
4 changed files with 92 additions and 0 deletions

21
src/SsdInterface.hpp Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "drivers/ssd.h"
#include "stdint.h"
class SsdInterface {
public:
SsdInterface();
~SsdInterface() = default;
uint32_t write(int32_t value, bool hex); // hex=false => decimal
uint32_t write(int32_t value, uint32_t decimal);
private:
};