]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - avr/strerror.c
move sys timer setup from main to timer.c
[z180-stamp.git] / avr / strerror.c
index bb151adb5ba63857e80d85aa0178aeeda4537ff0..a4d2a67340c76c35dc022ba14d3a6452413635fc 100644 (file)
@@ -5,14 +5,24 @@
  */
 
 #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("Interrupt"),
+       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)