Browse Source

Clean up trailing whitespace

Scott Lahteine 5 years ago
parent
commit
6964e1a95a

+ 1
- 1
Marlin/src/config/examples/Einstart-S/Configuration.h View File

561
 
561
 
562
 #define X_STOP_INVERTING true
562
 #define X_STOP_INVERTING true
563
 #define Y_STOP_INVERTING true
563
 #define Y_STOP_INVERTING true
564
-#define Z_STOP_INVERTING true 
564
+#define Z_STOP_INVERTING true
565
 
565
 
566
 // Enable this feature if all enabled endstop pins are interrupt-capable.
566
 // Enable this feature if all enabled endstop pins are interrupt-capable.
567
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
567
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 1
- 1
Marlin/src/config/examples/Einstart-S/readme.md View File

84
 ZS      Z-Endstop   (Max)
84
 ZS      Z-Endstop   (Max)
85
 YS      Y-Endstop   (Min)
85
 YS      Y-Endstop   (Min)
86
 XS      X-Endstop   (Min)
86
 XS      X-Endstop   (Min)
87
-PS      SPST Switch to enable DC 24v 
87
+PS      SPST Switch to enable DC 24v
88
 BT      Bed Thermistor (header not populated)
88
 BT      Bed Thermistor (header not populated)
89
 ET      Extruder Thermistor
89
 ET      Extruder Thermistor
90
 PT1     PT100 Thermocouple (not populated)
90
 PT1     PT100 Thermocouple (not populated)

+ 1
- 1
Marlin/src/inc/Conditionals_post.h View File

453
   #elif HAS_DRIVER(LV8729)
453
   #elif HAS_DRIVER(LV8729)
454
     #define MINIMUM_STEPPER_DIR_DELAY 500
454
     #define MINIMUM_STEPPER_DIR_DELAY 500
455
   #elif HAS_DRIVER(A5984)
455
   #elif HAS_DRIVER(A5984)
456
-    #define MINIMUM_STEPPER_DIR_DELAY 400  
456
+    #define MINIMUM_STEPPER_DIR_DELAY 400
457
   #elif HAS_DRIVER(A4988)
457
   #elif HAS_DRIVER(A4988)
458
     #define MINIMUM_STEPPER_DIR_DELAY 200
458
     #define MINIMUM_STEPPER_DIR_DELAY 200
459
   #elif HAS_TRINAMIC || HAS_DRIVER(TMC2660) || HAS_DRIVER(TMC2130_STANDALONE) || HAS_DRIVER(TMC2208_STANDALONE) || HAS_DRIVER(TMC26X_STANDALONE) || HAS_DRIVER(TMC2660_STANDALONE)
459
   #elif HAS_TRINAMIC || HAS_DRIVER(TMC2660) || HAS_DRIVER(TMC2130_STANDALONE) || HAS_DRIVER(TMC2208_STANDALONE) || HAS_DRIVER(TMC26X_STANDALONE) || HAS_DRIVER(TMC2660_STANDALONE)

+ 1
- 1
Marlin/src/lcd/ultralcd_impl_DOGM.h View File

183
     U8GLIB_MINI12864_2X u8g(DOGLCD_CS, DOGLCD_A0); // 4 stripes
183
     U8GLIB_MINI12864_2X u8g(DOGLCD_CS, DOGLCD_A0); // 4 stripes
184
 #elif ENABLED(U8GLIB_SH1106_EINSTART)
184
 #elif ENABLED(U8GLIB_SH1106_EINSTART)
185
   // Connected via motherboard header
185
   // Connected via motherboard header
186
-  U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);    
186
+  U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);
187
 #else
187
 #else
188
   // for regular DOGM128 display with HW-SPI
188
   // for regular DOGM128 display with HW-SPI
189
     //U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0);  // HW-SPI Com: CS, A0  // 8 stripes
189
     //U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0);  // HW-SPI Com: CS, A0  // 8 stripes

+ 1
- 1
Marlin/src/module/printcounter.cpp View File

74
   data = { 0, 0, 0, 0, 0.0 };
74
   data = { 0, 0, 0, 0, 0.0 };
75
 
75
 
76
   saveStats();
76
   saveStats();
77
-  
77
+
78
   uint16_t crc = 0;
78
   uint16_t crc = 0;
79
   int a = address;
79
   int a = address;
80
   persistentStore.access_start();
80
   persistentStore.access_start();

+ 1
- 1
Marlin/src/pins/pins_EINSTART-S.h View File

45
 // Limit Switches
45
 // Limit Switches
46
 //
46
 //
47
 #define X_STOP_PIN         44   // 2560 PIN 40
47
 #define X_STOP_PIN         44   // 2560 PIN 40
48
-#define Y_STOP_PIN         43   // 2560 PIN 41 
48
+#define Y_STOP_PIN         43   // 2560 PIN 41
49
 #define Z_STOP_PIN         42   // 2560 PIN 42
49
 #define Z_STOP_PIN         42   // 2560 PIN 42
50
 
50
 
51
 //
51
 //

+ 1
- 1
frameworks/CMSIS/LPC1768/lib/Print.h View File

41
   public:
41
   public:
42
     Print() : write_error(0) {}
42
     Print() : write_error(0) {}
43
     virtual ~Print() {}
43
     virtual ~Print() {}
44
-    
44
+
45
     int getWriteError() { return write_error; }
45
     int getWriteError() { return write_error; }
46
     void clearWriteError() { setWriteError(0); }
46
     void clearWriteError() { setWriteError(0); }
47
 
47
 

Loading…
Cancel
Save