Use lowercase names for serial instances

This commit is contained in:
Richard Wackerbarth
2015-07-31 22:31:53 -05:00
parent 1e2deff4fd
commit 4b9d5cd352
5 changed files with 9 additions and 9 deletions

View File

@ -281,12 +281,12 @@ void MarlinSerial::printFloat(double number, uint8_t digits) {
// Preinstantiate Objects //////////////////////////////////////////////////////
MarlinSerial MSerial;
MarlinSerial customizedSerial;
#endif // whole file
#endif // !USBCON
// For AT90USB targets use the UART for BT interfacing
#if defined(USBCON) && ENABLED(BLUETOOTH)
HardwareSerial bt;
HardwareSerial bluetoothSerial;
#endif