summaryrefslogtreecommitdiff
path: root/include/cmd_fat.h
diff options
context:
space:
mode:
authorLeo C2018-08-31 23:36:06 +0200
committerLeo C2018-08-31 23:36:06 +0200
commit414caa77d5709bf3372d1f9245312781eee7961b (patch)
treef2a6db4c2723cafed364bf73cf48f28c6666f86b /include/cmd_fat.h
parent85d34e1026065c340e2237e1d2ab56e868be86ec (diff)
downloadz180-stamp-414caa77d5709bf3372d1f9245312781eee7961b.zip
error handling: improved cmd_error() - print fatfs error strings
Diffstat (limited to 'include/cmd_fat.h')
-rw-r--r--include/cmd_fat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cmd_fat.h b/include/cmd_fat.h
index ed96a52..222b14c 100644
--- a/include/cmd_fat.h
+++ b/include/cmd_fat.h
@@ -8,9 +8,11 @@
#define CMD_FAT_H
#include "command.h"
+#include "ff.h"
extern cmd_tbl_t cmd_tbl_fat[];
+const FLASH char * fat_rctostr(FRESULT rc);
command_ret_t do_fat(cmd_tbl_t *, uint_fast8_t, int, char * const []);
void setup_fatfs(void);