X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/86ee5f8bc4c5a4c204be6fff004ef6bf6b839dcd..89826c563e38a30d5bfc589905eb1202fa14b751:/avr/strerror.c diff --git a/avr/strerror.c b/avr/strerror.c index bb151ad..a4d2a67 100644 --- a/avr/strerror.c +++ b/avr/strerror.c @@ -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)