Serial double echo fix
Fix double character sent when TX buffer size is 0 on mega2560
This commit is contained in:
		| @@ -482,8 +482,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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user