Skip to content

Commit 71ed695

Browse files
committed
Revert "Touch screen note w/ serial"
This reverts commit aa7f839.
1 parent e7b5581 commit 71ed695

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/core/serial.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ extern uint8_t marlin_debug_flags;
5757
#else
5858
#define SERIAL_OUT(WHAT, V...) do{ \
5959
if (!serial_port_index || serial_port_index == SERIAL_BOTH) (void)MYSERIAL0.WHAT(V); \
60-
if ( serial_port_index) (void)MYSERIAL0.WHAT(V); \
60+
if ( serial_port_index) (void)MYSERIAL1.WHAT(V); \
6161
}while(0)
62-
#endif // TODO: CR-6 requires MYSERIAL0 instead of MYSERIAL1, probably because the touch screen sits on the other serial port
62+
#endif
6363

6464
#define SERIAL_ASSERT(P) if(serial_port_index!=(P)){ debugger(); }
6565
#else

0 commit comments

Comments
 (0)