restore PR 9661 files & V1 fix

This commit is contained in:
Bob-the-Kuhn
2018-03-10 22:46:32 -06:00
parent 751785fc97
commit 0d8c15c01f
11 changed files with 746 additions and 227 deletions

View File

@ -517,7 +517,7 @@ void advance_command_queue() {
card.closefile();
SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED);
#ifndef USBCON
#if !defined(__AVR__) || !defined(USBCON)
#if ENABLED(SERIAL_STATS_DROPPED_RX)
SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped());
#endif
@ -525,7 +525,7 @@ void advance_command_queue() {
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued());
#endif
#endif // !USBCON
#endif // !defined(__AVR__) || !defined(USBCON)
ok_to_send();
}