Output a message for SD read errors

master
Scott Lahteine 8 years ago
parent 96b8bcca84
commit 400e13d136

@ -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

@ -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: "

Loading…
Cancel
Save