Browse Source

whitespace

Scott Lahteine 5 years ago
parent
commit
31eb487da5

+ 1
- 1
Marlin/Configuration_adv.h View File

47
  * is reported.  This allows us to ignore intermittent error conditions while
47
  * is reported.  This allows us to ignore intermittent error conditions while
48
  * still detecting an actual failure, which should result in a continuous
48
  * still detecting an actual failure, which should result in a continuous
49
  * stream of errors from the sensor.
49
  * stream of errors from the sensor.
50
- * 
50
+ *
51
  * Set this value to 0 to fail on the first error to occur.
51
  * Set this value to 0 to fail on the first error to occur.
52
  */
52
  */
53
 #define THERMOCOUPLE_MAX_ERRORS 15
53
 #define THERMOCOUPLE_MAX_ERRORS 15

+ 1
- 1
Marlin/src/feature/direct_stepping.cpp View File

61
 
61
 
62
   template<typename Cfg>
62
   template<typename Cfg>
63
   uint8_t SerialPageManager<Cfg>::pages[Cfg::NUM_PAGES][Cfg::PAGE_SIZE];
63
   uint8_t SerialPageManager<Cfg>::pages[Cfg::NUM_PAGES][Cfg::PAGE_SIZE];
64
-          
64
+
65
   template<typename Cfg>
65
   template<typename Cfg>
66
   uint8_t SerialPageManager<Cfg>::checksum;
66
   uint8_t SerialPageManager<Cfg>::checksum;
67
 
67
 

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

2075
       // Needed to return the correct temp when this is called too soon
2075
       // Needed to return the correct temp when this is called too soon
2076
       static uint16_t max6675_temp_previous[COUNT_6675] = { 0 };
2076
       static uint16_t max6675_temp_previous[COUNT_6675] = { 0 };
2077
     #endif
2077
     #endif
2078
-    
2078
+
2079
     static uint8_t max6675_errors[COUNT_6675] = { 0 };
2079
     static uint8_t max6675_errors[COUNT_6675] = { 0 };
2080
 
2080
 
2081
     #define MAX6675_HEAT_INTERVAL 250UL
2081
     #define MAX6675_HEAT_INTERVAL 250UL

+ 1
- 2
Marlin/src/pins/ramps/pins_RAMPS_CREALITY.h View File

47
   #define PS_ON_PIN                           40  // Used by CR2020 Industrial series
47
   #define PS_ON_PIN                           40  // Used by CR2020 Industrial series
48
 #endif
48
 #endif
49
 
49
 
50
-
51
 #if ENABLED(CASE_LIGHT_ENABLE) && !defined(CASE_LIGHT_PIN)
50
 #if ENABLED(CASE_LIGHT_ENABLE) && !defined(CASE_LIGHT_PIN)
52
   #define CASE_LIGHT_PIN                      65
51
   #define CASE_LIGHT_PIN                      65
53
 #endif
52
 #endif
65
 
64
 
66
 #define SUICIDE_PIN                           12  // Used by CR2020 Industrial series
65
 #define SUICIDE_PIN                           12  // Used by CR2020 Industrial series
67
 #ifndef SUICIDE_PIN_INVERTING
66
 #ifndef SUICIDE_PIN_INVERTING
68
-  #define SUICIDE_PIN_INVERTING             true
67
+  #define SUICIDE_PIN_INVERTING true
69
 #endif
68
 #endif

+ 2
- 2
Marlin/src/pins/ramps/pins_TRIGORILLA_14.h View File

59
 
59
 
60
 #define RAMPS_D10_PIN            TG_HEATER_0_PIN  // HEATER_0_PIN is always RAMPS_D10_PIN in pins_RAMPS.h
60
 #define RAMPS_D10_PIN            TG_HEATER_0_PIN  // HEATER_0_PIN is always RAMPS_D10_PIN in pins_RAMPS.h
61
 
61
 
62
-#if HAS_MULTI_HOTEND                                   // EEF and EEB
62
+#if HAS_MULTI_HOTEND                              // EEF and EEB
63
   #define RAMPS_D9_PIN           TG_HEATER_1_PIN
63
   #define RAMPS_D9_PIN           TG_HEATER_1_PIN
64
   #if !TEMP_SENSOR_BED
64
   #if !TEMP_SENSOR_BED
65
     // EEF
65
     // EEF
79
   #define RAMPS_D8_PIN               TG_FAN0_PIN
79
   #define RAMPS_D8_PIN               TG_FAN0_PIN
80
 #endif
80
 #endif
81
 
81
 
82
-#if HAS_MULTI_HOTEND || TEMP_SENSOR_BED                // EEF, EEB, EFB
82
+#if HAS_MULTI_HOTEND || TEMP_SENSOR_BED           // EEF, EEB, EFB
83
   #define FAN1_PIN                   TG_FAN1_PIN
83
   #define FAN1_PIN                   TG_FAN1_PIN
84
 #endif
84
 #endif
85
 #define FAN2_PIN                     TG_FAN2_PIN
85
 #define FAN2_PIN                     TG_FAN2_PIN

+ 2
- 2
Marlin/src/pins/stm32f4/pins_BTT_SKR_PRO_V1_1.h View File

352
  *            ̄ ̄
352
  *            ̄ ̄
353
  *            W1
353
  *            W1
354
  */
354
  */
355
-#define ESP_WIFI_MODULE_COM 6                         // Must also set either SERIAL_PORT or SERIAL_PORT_2 to this
356
-#define ESP_WIFI_MODULE_BAUDRATE            BAUDRATE  // Must use same BAUDRATE as SERIAL_PORT & SERIAL_PORT_2
355
+#define ESP_WIFI_MODULE_COM 6                     // Must also set either SERIAL_PORT or SERIAL_PORT_2 to this
356
+#define ESP_WIFI_MODULE_BAUDRATE        BAUDRATE  // Must use same BAUDRATE as SERIAL_PORT & SERIAL_PORT_2
357
 #define ESP_WIFI_MODULE_RESET_PIN           PG0
357
 #define ESP_WIFI_MODULE_RESET_PIN           PG0
358
 #define ESP_WIFI_MODULE_ENABLE_PIN          PG1
358
 #define ESP_WIFI_MODULE_ENABLE_PIN          PG1
359
 #define ESP_WIFI_MODULE_GPIO0_PIN           PF14
359
 #define ESP_WIFI_MODULE_GPIO0_PIN           PF14

Loading…
Cancel
Save