瀏覽代碼

Fix serial.h indents

Scott Lahteine 6 年之前
父節點
當前提交
5ccf8c2c33
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      Marlin/src/core/serial.h

+ 2
- 2
Marlin/src/core/serial.h 查看文件

73
 
73
 
74
 #define SERIAL_CHAR(x)          SERIAL_OUT(write, x)
74
 #define SERIAL_CHAR(x)          SERIAL_OUT(write, x)
75
 #define SERIAL_ECHO(x)          SERIAL_OUT(print, x)
75
 #define SERIAL_ECHO(x)          SERIAL_OUT(print, x)
76
-#define SERIAL_ECHO_F(V...)      SERIAL_OUT(print, V)
76
+#define SERIAL_ECHO_F(V...)     SERIAL_OUT(print, V)
77
 #define SERIAL_ECHOLN(x)        SERIAL_OUT(println, x)
77
 #define SERIAL_ECHOLN(x)        SERIAL_OUT(println, x)
78
 #define SERIAL_PRINT(x,b)       SERIAL_OUT(print, x, b)
78
 #define SERIAL_PRINT(x,b)       SERIAL_OUT(print, x, b)
79
 #define SERIAL_PRINTLN(x,b)     SERIAL_OUT(println, x, b)
79
 #define SERIAL_PRINTLN(x,b)     SERIAL_OUT(println, x, b)
80
-#define SERIAL_PRINTF(V...)      SERIAL_OUT(printf, V)
80
+#define SERIAL_PRINTF(V...)     SERIAL_OUT(printf, V)
81
 #define SERIAL_FLUSH()          SERIAL_OUT(flush)
81
 #define SERIAL_FLUSH()          SERIAL_OUT(flush)
82
 
82
 
83
 #if TX_BUFFER_SIZE > 0
83
 #if TX_BUFFER_SIZE > 0

Loading…
取消
儲存