Browse Source

Merge pull request #7892 from GMagician/Serial-double-echo-fix

[2.0.x] Serial double echo fix
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
732e87e83c
  1. 2
      Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp

2
Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp

@ -481,8 +481,6 @@
#else // TX_BUFFER_SIZE == 0
void MarlinSerial::write(const uint8_t c) {
while (!TEST(M_UCSRxA, M_UDREx)) { /* nada */ }
M_UDRx = c;
#if ENABLED(SERIAL_XON_XOFF)
// Do a priority insertion of an XON/XOFF char, if needed.
const uint8_t state = xon_xoff_state;

Loading…
Cancel
Save