Browse Source

Trailing whitespace

Scott Lahteine 6 years ago
parent
commit
1165c26ab4

+ 1
- 1
Marlin/src/HAL/HAL_SAMD51/HAL.cpp View File

389
 void HAL_clear_reset_source(void) { }
389
 void HAL_clear_reset_source(void) { }
390
 
390
 
391
 #pragma push_macro("WDT")
391
 #pragma push_macro("WDT")
392
-#undef WDT    // Required to be able to use '.bit.WDT'. Compiler wrongly replace struct field with WDT define 
392
+#undef WDT    // Required to be able to use '.bit.WDT'. Compiler wrongly replace struct field with WDT define
393
 uint8_t HAL_get_reset_source(void) {
393
 uint8_t HAL_get_reset_source(void) {
394
   RSTC_RCAUSE_Type resetCause;
394
   RSTC_RCAUSE_Type resetCause;
395
 
395
 

+ 1
- 1
Marlin/src/HAL/HAL_SAMD51/endstop_interrupts.h View File

27
  * Any pin can be used for external interrupts, but there are some restrictions.
27
  * Any pin can be used for external interrupts, but there are some restrictions.
28
  * At most 16 different external interrupts can be used at one time.
28
  * At most 16 different external interrupts can be used at one time.
29
  * Further, you can’t just pick any 16 pins to use. This is because every pin on the SAMD51
29
  * Further, you can’t just pick any 16 pins to use. This is because every pin on the SAMD51
30
- * connects to what is called an EXTINT line, and only one pin per EXTINT line can be used for external 
30
+ * connects to what is called an EXTINT line, and only one pin per EXTINT line can be used for external
31
  * interrupts at a time
31
  * interrupts at a time
32
  */
32
  */
33
 
33
 

+ 1
- 1
Marlin/src/HAL/HAL_SAMD51/persistent_store_eeprom.cpp View File

45
     NVMCTRL->SEECFG.reg = NVMCTRL_SEECFG_WMODE_BUFFERED;  // Buffered mode and segment reallocation active
45
     NVMCTRL->SEECFG.reg = NVMCTRL_SEECFG_WMODE_BUFFERED;  // Buffered mode and segment reallocation active
46
   #endif
46
   #endif
47
 
47
 
48
-  return true; 
48
+  return true;
49
 }
49
 }
50
 
50
 
51
 bool PersistentStore::access_finish() {
51
 bool PersistentStore::access_finish() {

Loading…
Cancel
Save