huge work on FAT32, initial support for writing

This commit is contained in:
2021-02-14 21:35:47 +01:00
parent 6aa951190e
commit da12992ae8
14 changed files with 609 additions and 91 deletions

View File

@@ -46,7 +46,7 @@ private:
template<typename... Args> static void add(char level, const char* module, const char* fmt, Args... args) {
char buf[128];
char buf[4096];
char* dst = buf;
dst = dst + sprintf(dst, "%c[%-10s] ", level, module);