Procházet zdrojové kódy

Fix trailing whitespace

Scott Lahteine před 6 roky
rodič
revize
894f5c24a8

+ 5
- 5
Marlin/src/HAL/HAL_ESP32/i2s.cpp Zobrazit soubor

162
   periph_module_enable(PERIPH_I2S0_MODULE);
162
   periph_module_enable(PERIPH_I2S0_MODULE);
163
 
163
 
164
   /**
164
   /**
165
-   * Each i2s transfer will take 
165
+   * Each i2s transfer will take
166
    *   fpll = PLL_D2_CLK      -- clka_en = 0
166
    *   fpll = PLL_D2_CLK      -- clka_en = 0
167
-   * 
167
+   *
168
    *   fi2s = fpll / N + b/a  -- N = clkm_div_num
168
    *   fi2s = fpll / N + b/a  -- N = clkm_div_num
169
    *   fi2s = 160MHz / 2
169
    *   fi2s = 160MHz / 2
170
    *   fi2s = 80MHz
170
    *   fi2s = 80MHz
171
-   *   
171
+   *
172
    *   fbclk = fi2s / M   -- M = tx_bck_div_num
172
    *   fbclk = fi2s / M   -- M = tx_bck_div_num
173
    *   fbclk = 80MHz / 2
173
    *   fbclk = 80MHz / 2
174
    *   fbclk = 40MHz
174
    *   fbclk = 40MHz
175
-   * 
175
+   *
176
    *   fwclk = fbclk / 32
176
    *   fwclk = fbclk / 32
177
-   * 
177
+   *
178
    *   for fwclk = 250kHz (4uS pulse time)
178
    *   for fwclk = 250kHz (4uS pulse time)
179
    *      N = 10
179
    *      N = 10
180
    *      M = 20
180
    *      M = 20

+ 1
- 1
Marlin/src/gcode/control/M380_M381.cpp Zobrazit soubor

45
  * M381: Disable all solenoids if EXT_SOLENOID
45
  * M381: Disable all solenoids if EXT_SOLENOID
46
  *       Disable selected/active solenoid if MANUAL_SOLENOID_CONTROL
46
  *       Disable selected/active solenoid if MANUAL_SOLENOID_CONTROL
47
  */
47
  */
48
-void GcodeSuite::M381() { 
48
+void GcodeSuite::M381() {
49
   #if ENABLED(MANUAL_SOLENOID_CONTROL)
49
   #if ENABLED(MANUAL_SOLENOID_CONTROL)
50
     disable_solenoid(parser.intval('S', active_extruder));
50
     disable_solenoid(parser.intval('S', active_extruder));
51
   #else
51
   #else

+ 5
- 5
Marlin/src/module/tool_change.cpp Zobrazit soubor

133
         parkingslowspeed,          // M951 J
133
         parkingslowspeed,          // M951 J
134
         parkinghighspeed ,         // M951 H
134
         parkinghighspeed ,         // M951 H
135
         parkingtraveldistance,     // M951 D
135
         parkingtraveldistance,     // M951 D
136
-        compensationmultiplier;  
136
+        compensationmultiplier;
137
 
137
 
138
   inline void magnetic_parking_extruder_tool_change(const uint8_t tmp_extruder) {
138
   inline void magnetic_parking_extruder_tool_change(const uint8_t tmp_extruder) {
139
 
139
 
178
     // STEP 2
178
     // STEP 2
179
 
179
 
180
     current_position[X_AXIS] = grabpos + offsetcompensation;
180
     current_position[X_AXIS] = grabpos + offsetcompensation;
181
-  
181
+
182
     #if ENABLED(DEBUG_LEVELING_FEATURE)
182
     #if ENABLED(DEBUG_LEVELING_FEATURE)
183
       if (DEBUGGING(LEVELING)) {
183
       if (DEBUGGING(LEVELING)) {
184
         SERIAL_ECHOPAIR("(2) Couple extruder ", int(tmp_extruder));
184
         SERIAL_ECHOPAIR("(2) Couple extruder ", int(tmp_extruder));
185
         DEBUG_POS(" to new extruder GrabPos", current_position);
185
         DEBUG_POS(" to new extruder GrabPos", current_position);
186
       }
186
       }
187
     #endif
187
     #endif
188
-  
188
+
189
     planner.buffer_line(current_position, mpe_settings.slow_feedrate, tmp_extruder);
189
     planner.buffer_line(current_position, mpe_settings.slow_feedrate, tmp_extruder);
190
     planner.synchronize();
190
     planner.synchronize();
191
-  
191
+
192
     // Delay before moving tool, to allow magnetic coupling
192
     // Delay before moving tool, to allow magnetic coupling
193
     gcode.dwell(150);
193
     gcode.dwell(150);
194
-  
194
+
195
     // STEP 3
195
     // STEP 3
196
 
196
 
197
     current_position[X_AXIS] = mpe_settings.parking_xpos[tmp_extruder] + offsetcompensation;
197
     current_position[X_AXIS] = mpe_settings.parking_xpos[tmp_extruder] + offsetcompensation;

Loading…
Zrušit
Uložit