Browse Source

Cleanup trailing whitespace

Scott Lahteine 7 years ago
parent
commit
31f112cf58
2 changed files with 8 additions and 8 deletions
  1. 4
    4
      Marlin/src/gcode/calibrate/G33.cpp
  2. 4
    4
      Marlin/src/pins/pins_SILVER_GATE.h

+ 4
- 4
Marlin/src/gcode/calibrate/G33.cpp View File

@@ -50,8 +50,8 @@ enum CalEnum {                               // the 7 main calibration points -
50 50
   _CA      = __C + _7P_STEP,
51 51
 };
52 52
 
53
-#define LOOP_CAL_PT(VAR, S, N) for (uint8_t VAR=S; VAR<=NPP; VAR+=N) 
54
-#define F_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR<NPP+0.9999; VAR+=N) 
53
+#define LOOP_CAL_PT(VAR, S, N) for (uint8_t VAR=S; VAR<=NPP; VAR+=N)
54
+#define F_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR<NPP+0.9999; VAR+=N)
55 55
 #define I_LOOP_CAL_PT(VAR, S, N) for (float VAR=S; VAR>CEN+0.9999; VAR-=N)
56 56
 #define LOOP_CAL_ALL(VAR) LOOP_CAL_PT(VAR, CEN, 1)
57 57
 #define LOOP_CAL_RAD(VAR) LOOP_CAL_PT(VAR, __A, _7P_STEP)
@@ -189,8 +189,8 @@ static float probe_G33_points(float z_at_pt[NPP + 1], const int8_t probe_points,
189 189
                              _7p_8_intermediates  ? _7P_STEP /  9.0 : //  9r * 6 + 10c = 64
190 190
                              _7p_6_intermediates  ? _7P_STEP /  7.0 : //  7r * 6 +  7c = 49
191 191
                              _7p_4_intermediates  ? _7P_STEP /  5.0 : //  5r * 6 +  6c = 36
192
-                             _7p_2_intermediates  ? _7P_STEP /  3.0 : //  3r * 6 +  7c = 25 
193
-                             _7p_1_intermediates  ? _7P_STEP /  2.0 : //  2r * 6 +  4c = 16 
192
+                             _7p_2_intermediates  ? _7P_STEP /  3.0 : //  3r * 6 +  7c = 25
193
+                             _7p_1_intermediates  ? _7P_STEP /  2.0 : //  2r * 6 +  4c = 16
194 194
                              _7p_no_intermediates ? _7P_STEP :        //  1r * 6 +  3c = 9
195 195
                              _4P_STEP;                                // .5r * 6 +  1c = 4
196 196
       bool zig_zag = true;

+ 4
- 4
Marlin/src/pins/pins_SILVER_GATE.h View File

@@ -20,7 +20,7 @@
20 20
  *
21 21
  */
22 22
 
23
-#if !defined(__AVR_ATmega1281__) && !defined(__AVR_ATmega2561__) 
23
+#if !defined(__AVR_ATmega1281__) && !defined(__AVR_ATmega2561__)
24 24
   #error Oops!  Make sure you have 'Silvergate' selected from the 'Tools -> Boards' menu.
25 25
 #endif
26 26
 
@@ -71,7 +71,7 @@
71 71
 #define TEMP_BED_PIN        6
72 72
 
73 73
 #if ENABLED(DOGLCD)
74
-  #if ENABLED(U8GLIB_ST7920)    // SPI GLCD 12864 ST7920 
74
+  #if ENABLED(U8GLIB_ST7920)    // SPI GLCD 12864 ST7920
75 75
     #define LCD_PINS_RS    30
76 76
     #define LCD_PINS_ENABLE 20
77 77
     #define LCD_PINS_D4    25
@@ -80,7 +80,7 @@
80 80
     #define BTN_EN2        22
81 81
     #define BTN_ENC        24
82 82
     #define LCD_BACKLIGHT_PIN  6
83
-    #if ENABLED(SILVER_GATE_GLCD_CONTROLLER) 
83
+    #if ENABLED(SILVER_GATE_GLCD_CONTROLLER)
84 84
       #define KILL_PIN     21
85 85
       #define HOME_PIN     28
86 86
     #endif
@@ -88,7 +88,7 @@
88 88
 #endif
89 89
 
90 90
 #define SD_DETECT_PIN      15
91
- 
91
+
92 92
 #define STAT_LED_RED_PIN   23
93 93
 #define STAT_LED_BLUE_PIN  26
94 94
 #define CASE_LIGHT_PIN     51

Loading…
Cancel
Save