14 lines
179 B
C++
14 lines
179 B
C++
#pragma once
|
|
#include "fatfs.h"
|
|
#include <string>
|
|
|
|
class SDCardLogger {
|
|
public:
|
|
bool init();
|
|
bool write(const std::string &line);
|
|
|
|
private:
|
|
FIL file;
|
|
FATFS fs;
|
|
};
|