자동로깅 추가, usb port추가

This commit is contained in:
2026-02-27 08:54:14 +00:00
parent 7e0e65297b
commit 961680e5ec
7 changed files with 291 additions and 21 deletions

View File

@@ -9,6 +9,7 @@
#include "config.h"
extern volatile bool sdLoggingActive;
extern volatile bool sdAutoStart;
extern char currentLogFileName[64];
void sdTaskInit();
@@ -21,5 +22,7 @@ bool sdDeleteFile(const char *filename);
bool sdCardPresent();
String sdGetComment(const char *filename);
bool sdSetComment(const char *filename, const char *comment);
bool sdGetAutoStart();
void sdSetAutoStart(bool enable);
#endif