summaryrefslogtreecommitdiff
path: root/avr/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/strerror.c')
-rw-r--r--avr/strerror.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/avr/strerror.c b/avr/strerror.c
index bb151ad..4fdc63d 100644
--- a/avr/strerror.c
+++ b/avr/strerror.c
@@ -5,14 +5,23 @@
*/
#include "common.h"
-#include "errnum.h"
#include "cmd_fat.h"
static const FLASH char * const FLASH error_strings[] = {
FSTR("Unknown error"),
FSTR("Not enough memory"),
- FSTR("Bus timeout")
+ FSTR("Bus timeout"),
+ FSTR("Unexpected argument"),
+ FSTR("Invalid disk number"),
+ FSTR("Disk already attached"),
+ FSTR("Disk not attached"),
+ FSTR("Error opening file"),
+ FSTR("File already attached to other drive"),
+ FSTR("CPU is running"),
+ FSTR("Invalid argument"),
+ FSTR("Unexpected EOF"),
+
};
const FLASH char * my_strerror_P(ERRNUM errnum)