Browse Source

Clean up trailing whitespace

Scott Lahteine 5 years ago
parent
commit
a2cda631d9

+ 1
- 1
Marlin/src/module/stepper.h View File

67
 #ifdef CPU_32_BIT
67
 #ifdef CPU_32_BIT
68
   /**
68
   /**
69
    * Duration of START_TIMED_PULSE
69
    * Duration of START_TIMED_PULSE
70
-   * 
70
+   *
71
    * ...as measured on an LPC1768 with a scope and converted to cycles.
71
    * ...as measured on an LPC1768 with a scope and converted to cycles.
72
    * Not applicable to other 32-bit processors, but as long as others
72
    * Not applicable to other 32-bit processors, but as long as others
73
    * take longer, pulses will be longer. For example the SKR Pro
73
    * take longer, pulses will be longer. For example the SKR Pro

+ 2
- 2
Marlin/src/pins/esp32/pins_MRR_ESPE.h View File

107
 #define HEATER_BED_PIN    144 // 4
107
 #define HEATER_BED_PIN    144 // 4
108
 
108
 
109
 #define CONTROLLER_FAN_PIN 147
109
 #define CONTROLLER_FAN_PIN 147
110
-//#define E0_AUTO_FAN_PIN 148 // need to update Configuration_adv.h @section extruder 
111
-//#define E1_AUTO_FAN_PIN 149 // need to update Configuration_adv.h @section extruder 
110
+//#define E0_AUTO_FAN_PIN 148 // need to update Configuration_adv.h @section extruder
111
+//#define E1_AUTO_FAN_PIN 149 // need to update Configuration_adv.h @section extruder
112
 #define FAN1_PIN 149
112
 #define FAN1_PIN 149
113
 
113
 
114
 //
114
 //

+ 1
- 1
Marlin/src/pins/stm32/pins_BTT_BTT002_V1_0.h View File

155
 #define FAN_PIN            PB9   // Fan0
155
 #define FAN_PIN            PB9   // Fan0
156
 #define FAN1_PIN           PB8   // Fan1
156
 #define FAN1_PIN           PB8   // Fan1
157
 
157
 
158
-// HAL SPI1 pins 
158
+// HAL SPI1 pins
159
 #define CUSTOM_SPI_PINS
159
 #define CUSTOM_SPI_PINS
160
 #if ENABLED(CUSTOM_SPI_PINS)
160
 #if ENABLED(CUSTOM_SPI_PINS)
161
   #define SCK_PIN          PA5   // SPI1 SCLK
161
   #define SCK_PIN          PA5   // SPI1 SCLK

+ 1
- 1
Marlin/src/pins/stm32/pins_MKS_ROBIN_MINI.h View File

42
 // 2K in a AT24C16N
42
 // 2K in a AT24C16N
43
 #define EEPROM_PAGE_SIZE	(uint16)0x800 // 2048
43
 #define EEPROM_PAGE_SIZE	(uint16)0x800 // 2048
44
 #define EEPROM_START_ADDRESS	((uint32)(0x8000000 + 512 * 1024 - 2 * EEPROM_PAGE_SIZE))
44
 #define EEPROM_START_ADDRESS	((uint32)(0x8000000 + 512 * 1024 - 2 * EEPROM_PAGE_SIZE))
45
-#define E2END (EEPROM_PAGE_SIZE - 1) 
45
+#define E2END (EEPROM_PAGE_SIZE - 1)
46
 
46
 
47
 //
47
 //
48
 // Note: MKS Robin mini board is using SPI2 interface.
48
 // Note: MKS Robin mini board is using SPI2 interface.

+ 8
- 8
buildroot/share/PlatformIO/variants/FLY_F407ZG/ldscript.ld View File

134
   _sidata = LOADADDR(.data);
134
   _sidata = LOADADDR(.data);
135
 
135
 
136
   /* Initialized data sections goes into RAM, load LMA copy after code */
136
   /* Initialized data sections goes into RAM, load LMA copy after code */
137
-  .data : 
137
+  .data :
138
   {
138
   {
139
     . = ALIGN(4);
139
     . = ALIGN(4);
140
     _sdata = .;        /* create a global symbol at data start */
140
     _sdata = .;        /* create a global symbol at data start */
147
 
147
 
148
   _siccmram = LOADADDR(.ccmram);
148
   _siccmram = LOADADDR(.ccmram);
149
 
149
 
150
-  /* CCM-RAM section 
151
-  * 
152
-  * IMPORTANT NOTE! 
150
+  /* CCM-RAM section
151
+  *
152
+  * IMPORTANT NOTE!
153
   * If initialized variables will be placed in this section,
153
   * If initialized variables will be placed in this section,
154
-  * the startup code needs to be modified to copy the init-values.  
154
+  * the startup code needs to be modified to copy the init-values.
155
   */
155
   */
156
   .ccmram :
156
   .ccmram :
157
   {
157
   {
159
     _sccmram = .;       /* create a global symbol at ccmram start */
159
     _sccmram = .;       /* create a global symbol at ccmram start */
160
     *(.ccmram)
160
     *(.ccmram)
161
     *(.ccmram*)
161
     *(.ccmram*)
162
-    
162
+
163
     . = ALIGN(4);
163
     . = ALIGN(4);
164
     _eccmram = .;       /* create a global symbol at ccmram end */
164
     _eccmram = .;       /* create a global symbol at ccmram end */
165
   } >CCMRAM AT> FLASH
165
   } >CCMRAM AT> FLASH
166
 
166
 
167
-  
167
+
168
   /* Uninitialized data section */
168
   /* Uninitialized data section */
169
   . = ALIGN(4);
169
   . = ALIGN(4);
170
   .bss :
170
   .bss :
191
     . = . + _Min_Stack_Size;
191
     . = . + _Min_Stack_Size;
192
     . = ALIGN(4);
192
     . = ALIGN(4);
193
   } >RAM
193
   } >RAM
194
-  
194
+
195
 
195
 
196
   /* Remove information from the standard libraries */
196
   /* Remove information from the standard libraries */
197
   /DISCARD/ :
197
   /DISCARD/ :

+ 4
- 4
buildroot/share/PlatformIO/variants/FLY_F407ZG/variant.h View File

163
 // Below SPI and I2C definitions already done in the core
163
 // Below SPI and I2C definitions already done in the core
164
 // Could be redefined here if differs from the default one
164
 // Could be redefined here if differs from the default one
165
 // SPI Definitions
165
 // SPI Definitions
166
-#define PIN_SPI_SS              PF11 
166
+#define PIN_SPI_SS              PF11
167
 #define PIN_SPI_MOSI            PB15
167
 #define PIN_SPI_MOSI            PB15
168
-#define PIN_SPI_MISO            PB14 
169
-#define PIN_SPI_SCK             PB13 
168
+#define PIN_SPI_MISO            PB14
169
+#define PIN_SPI_SCK             PB13
170
 
170
 
171
 
171
 
172
 
172
 
173
 //max6675
173
 //max6675
174
-//#define PIN_SPI_SS              PA4 
174
+//#define PIN_SPI_SS              PA4
175
 //#define PIN_SPI_SCK             PA5
175
 //#define PIN_SPI_SCK             PA5
176
 //#define PIN_SPI_MISO            PA6
176
 //#define PIN_SPI_MISO            PA6
177
 //#define PIN_SPI_MOSI            PA7
177
 //#define PIN_SPI_MOSI            PA7

Loading…
Cancel
Save