소스 검색

Use SERIAL_EOL in SERIAL_PROTOCOLLN macros

Scott Lahteine 9 년 전
부모
커밋
bc0fdbe88e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/Marlin.h

+ 2
- 2
Marlin/Marlin.h 파일 보기

@@ -75,8 +75,8 @@ typedef unsigned long millis_t;
75 75
 #define SERIAL_PROTOCOL(x) MYSERIAL.print(x)
76 76
 #define SERIAL_PROTOCOL_F(x,y) MYSERIAL.print(x,y)
77 77
 #define SERIAL_PROTOCOLPGM(x) serialprintPGM(PSTR(x))
78
-#define SERIAL_PROTOCOLLN(x) do{ MYSERIAL.print(x),MYSERIAL.write('\n'); }while(0)
79
-#define SERIAL_PROTOCOLLNPGM(x) do{ serialprintPGM(PSTR(x)),MYSERIAL.write('\n'); }while(0)
78
+#define SERIAL_PROTOCOLLN(x) do{ MYSERIAL.print(x); SERIAL_EOL; }while(0)
79
+#define SERIAL_PROTOCOLLNPGM(x) do{ serialprintPGM(PSTR(x)); SERIAL_EOL; }while(0)
80 80
 
81 81
 
82 82
 extern const char errormagic[] PROGMEM;

Loading…
취소
저장