Browse Source

Fix up leading/trailing whitespace

Scott Lahteine 6 years ago
parent
commit
d5141c4e03

+ 2
- 2
Marlin/src/HAL/HAL_AVR/MarlinSerial.h View File

254
       static void printNumber(unsigned long, const uint8_t);
254
       static void printNumber(unsigned long, const uint8_t);
255
       static void printFloat(double, uint8_t);
255
       static void printFloat(double, uint8_t);
256
   };
256
   };
257
-  
257
+
258
   template <uint8_t serial>
258
   template <uint8_t serial>
259
   struct MarlinSerialCfg {
259
   struct MarlinSerialCfg {
260
     static constexpr int PORT               = serial;
260
     static constexpr int PORT               = serial;
272
   #ifdef SERIAL_PORT_2
272
   #ifdef SERIAL_PORT_2
273
 
273
 
274
     extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT_2>> customizedSerial2;
274
     extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT_2>> customizedSerial2;
275
-    
275
+
276
   #endif
276
   #endif
277
 
277
 
278
 #endif // !USBCON
278
 #endif // !USBCON

+ 3
- 4
Marlin/src/HAL/HAL_DUE/MarlinSerial_Due.h View File

170
   static constexpr bool RX_FRAMING_ERRORS = bSERIAL_STATS_RX_FRAMING_ERRORS;
170
   static constexpr bool RX_FRAMING_ERRORS = bSERIAL_STATS_RX_FRAMING_ERRORS;
171
   static constexpr bool MAX_RX_QUEUED     = bSERIAL_STATS_MAX_RX_QUEUED;
171
   static constexpr bool MAX_RX_QUEUED     = bSERIAL_STATS_MAX_RX_QUEUED;
172
 };
172
 };
173
-  
173
+
174
 #if SERIAL_PORT >= 0
174
 #if SERIAL_PORT >= 0
175
 
175
 
176
   extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT>> customizedSerial1;
176
   extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT>> customizedSerial1;
177
-  
177
+
178
 #endif // SERIAL_PORT >= 0
178
 #endif // SERIAL_PORT >= 0
179
 
179
 
180
 #ifdef SERIAL_PORT_2
180
 #ifdef SERIAL_PORT_2
181
 
181
 
182
   extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT_2>> customizedSerial2;
182
   extern MarlinSerial<MarlinSerialCfg<SERIAL_PORT_2>> customizedSerial2;
183
-  
184
-#endif
185
 
183
 
184
+#endif

+ 1
- 1
Marlin/src/config/examples/Formbot/Raptor/Configuration_adv.h View File

1607
   #define USER_SCRIPT_AUDIBLE_FEEDBACK
1607
   #define USER_SCRIPT_AUDIBLE_FEEDBACK
1608
   #define USER_SCRIPT_RETURN  // Return to status screen after a script
1608
   #define USER_SCRIPT_RETURN  // Return to status screen after a script
1609
 
1609
 
1610
-    #define USER_DESC_1 "UBL Commission Step 1"
1610
+  #define USER_DESC_1 "UBL Commission Step 1"
1611
   #define USER_GCODE_1 "M502 \n M500 \n M501 \n M190 S75 \n G28 \n G29 P1 \n G29 S1 \n M117 Run Step 2 \n"
1611
   #define USER_GCODE_1 "M502 \n M500 \n M501 \n M190 S75 \n G28 \n G29 P1 \n G29 S1 \n M117 Run Step 2 \n"
1612
 
1612
 
1613
   #define USER_DESC_2 "UBL Commission Step 2"
1613
   #define USER_DESC_2 "UBL Commission Step 2"

Loading…
Cancel
Save