Output a message for SD read errors

This commit is contained in:
Scott Lahteine 2016-06-19 17:14:56 -07:00
parent 96b8bcca84
commit 400e13d136
2 changed files with 5 additions and 0 deletions

View file

@ -1140,6 +1140,10 @@ inline void get_serial_commands() {
card.printingHasFinished();
card.checkautostart(true);
}
else if (n == -1) {
SERIAL_ERROR_START;
SERIAL_ECHOLNPGM(MSG_SD_ERR_READ);
}
if (sd_char == '#') stop_buffering = true;
sd_comment_mode = false; //for new command

View file

@ -171,6 +171,7 @@
#define MSG_SD_PRINTING_BYTE "SD printing byte "
#define MSG_SD_NOT_PRINTING "Not SD printing"
#define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
#define MSG_SD_ERR_READ "SD read error"
#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
#define MSG_STEPPER_TOO_HIGH "Steprate too high: "