diff --git a/Marlin/src/HAL/HAL_DUE/fastio_Due.h b/Marlin/src/HAL/HAL_DUE/fastio_Due.h index 9545ac82e2..d60441b641 100644 --- a/Marlin/src/HAL/HAL_DUE/fastio_Due.h +++ b/Marlin/src/HAL/HAL_DUE/fastio_Due.h @@ -89,7 +89,7 @@ #define _SET_OUTPUT(IO) do{ pmc_enable_periph_clk(g_APinDescription[IO].ulPeripheralId); \ PIO_Configure(g_APinDescription[IO].pPort, _READ(IO) ? PIO_OUTPUT_1 : PIO_OUTPUT_0, \ g_APinDescription[IO].ulPin, g_APinDescription[IO].ulPinConfiguration); \ - g_pinStatus[IO] = (g_pinStatus[IO] & 0xF0) | PIN_STATUS_DIGITAL_OUTPUT;\ + g_pinStatus[IO] = (g_pinStatus[IO] & 0xF0) | PIN_STATUS_DIGITAL_OUTPUT;\ }while(0) /// set pin as input with pullup mode diff --git a/Marlin/src/HAL/HAL_LPC1768/SoftwareSPI.cpp b/Marlin/src/HAL/HAL_LPC1768/SoftwareSPI.cpp index c85ba170be..03f9fcff87 100644 --- a/Marlin/src/HAL/HAL_LPC1768/SoftwareSPI.cpp +++ b/Marlin/src/HAL/HAL_LPC1768/SoftwareSPI.cpp @@ -58,7 +58,7 @@ uint8_t swSpiTransfer(uint8_t b, uint8_t spi_speed, pin_t sck_pin, pin_t miso_pi WRITE(mosi_pin, LOW); WRITE(sck_pin, HIGH); - + b <<= 1; if (miso_pin >= 0) @@ -76,7 +76,7 @@ uint8_t swSpiTransfer(uint8_t b, uint8_t spi_speed, pin_t sck_pin, pin_t miso_pi for (uint8_t j = 0; j < spi_speed + (miso_pin >= 0 ? 0 : 1); j++) WRITE(sck_pin, HIGH); - + b <<= 1; if (miso_pin >= 0) diff --git a/Marlin/src/config/examples/BQ/Hephestos_2/_Bootscreen.h b/Marlin/src/config/examples/BQ/Hephestos_2/_Bootscreen.h index e0eab61a68..23ebd84137 100644 --- a/Marlin/src/config/examples/BQ/Hephestos_2/_Bootscreen.h +++ b/Marlin/src/config/examples/BQ/Hephestos_2/_Bootscreen.h @@ -97,5 +97,5 @@ const unsigned char custom_start_bmp[] PROGMEM = { B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B01111000, B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B01111000, B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B01111000, - B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B01111000 + B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B01111000 }; diff --git a/Marlin/src/config/examples/Cartesio/_Bootscreen.h b/Marlin/src/config/examples/Cartesio/_Bootscreen.h index de4704b869..116980c82b 100644 --- a/Marlin/src/config/examples/Cartesio/_Bootscreen.h +++ b/Marlin/src/config/examples/Cartesio/_Bootscreen.h @@ -97,5 +97,5 @@ const unsigned char custom_start_bmp[] PROGMEM = { B00000000,B00000000,B00011111,B11111111,B11111111,B11110000,B00000000,B00000000, B00000000,B00000000,B00000111,B11111111,B11111111,B10000000,B00000000,B00000000, B00000000,B00000000,B00000000,B01111111,B11111000,B00000000,B00000000,B00000000, - B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000 + B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000 }; diff --git a/Marlin/src/config/examples/MakerParts/_Bootscreen.h b/Marlin/src/config/examples/MakerParts/_Bootscreen.h index 1a37fc59b8..26829dfa7a 100644 --- a/Marlin/src/config/examples/MakerParts/_Bootscreen.h +++ b/Marlin/src/config/examples/MakerParts/_Bootscreen.h @@ -77,5 +77,5 @@ const unsigned char custom_start_bmp[] PROGMEM = { B00000000,B00001111,B11111111,B10000000,B00000000,B00001111,B10000000,B11111100,B00001111,B11011111,B00001111,B11000001,B11110000,B00001111,B11111000,B01111100, B00000000,B00000111,B11111111,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, B00000000,B00000011,B11111100,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, - B00000000,B00000000,B11111000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000 + B00000000,B00000000,B11111000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000 }; diff --git a/Marlin/src/config/examples/gCreate/gMax1.5+/_Bootscreen.h b/Marlin/src/config/examples/gCreate/gMax1.5+/_Bootscreen.h index 075876276e..f08d259793 100644 --- a/Marlin/src/config/examples/gCreate/gMax1.5+/_Bootscreen.h +++ b/Marlin/src/config/examples/gCreate/gMax1.5+/_Bootscreen.h @@ -97,5 +97,5 @@ const unsigned char custom_start_bmp[] PROGMEM = { B00000110,B00011110,B01000000,B00010000,B00010000,B00000000,B00000000,B00010000,B00000101,B11001000,B00001001,B11001000,B00001011,B10000001, B00000110,B00000000,B01000000,B00100000,B00010000,B00000000,B00000000,B00001111,B11111000,B10001111,B11110000,B10001111,B11111001,B00000001, B00000011,B10000000,B00000000,B00100000,B00110000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000001, - B00000001,B11111111,B11111111,B11111111,B11100000,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111 + B00000001,B11111111,B11111111,B11111111,B11100000,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111 }; diff --git a/Marlin/src/feature/pause.cpp b/Marlin/src/feature/pause.cpp index a0e8d765b2..63c55fc914 100644 --- a/Marlin/src/feature/pause.cpp +++ b/Marlin/src/feature/pause.cpp @@ -488,7 +488,7 @@ void resume_print(const float &load_length/*=0*/, const float &purge_length/*=AD #endif // If resume_position is negative if (resume_position[E_AXIS] < 0) do_pause_e_move(resume_position[E_AXIS], PAUSE_PARK_RETRACT_FEEDRATE); - + // Move XY to starting position, then Z do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], NOZZLE_PARK_XY_FEEDRATE); diff --git a/frameworks/CMSIS/LPC1768/lib/chanfs/ff.c b/frameworks/CMSIS/LPC1768/lib/chanfs/ff.c index 856d784468..c8ff06224b 100644 --- a/frameworks/CMSIS/LPC1768/lib/chanfs/ff.c +++ b/frameworks/CMSIS/LPC1768/lib/chanfs/ff.c @@ -2053,7 +2053,7 @@ FRESULT load_xdir ( /* FR_INT_ERR: invalid entry block */ /* exFAT: Load the object's directory entry block */ /*------------------------------------------------*/ static -FRESULT load_obj_xdir ( +FRESULT load_obj_xdir ( DIR* dp, /* Blank directory object to be used to access containing direcotry */ const FFOBJID* obj /* Object with its containing directory information */ ) diff --git a/frameworks/CMSIS/LPC1768/lib/usb/cdcuser.h b/frameworks/CMSIS/LPC1768/lib/usb/cdcuser.h index ca4b668838..c5fc9a85ae 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/cdcuser.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/cdcuser.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC microcontroller devices only. Nothing else + * on NXP Semiconductors LPC microcontroller devices only. Nothing else * gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved. diff --git a/frameworks/CMSIS/LPC1768/lib/usb/mscuser.h b/frameworks/CMSIS/LPC1768/lib/usb/mscuser.h index 8d12e8d3f3..f2f3a2bcd1 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/mscuser.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/mscuser.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC family microcontroller devices only. Nothing + * on NXP Semiconductors LPC family microcontroller devices only. Nothing * else gives you the right to use this software. * * Copyright (c) 2005-2009 Keil Software. diff --git a/frameworks/CMSIS/LPC1768/lib/usb/usbcfg.h b/frameworks/CMSIS/LPC1768/lib/usb/usbcfg.h index cf9e1e0a48..6c487c2b78 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/usbcfg.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/usbcfg.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC family microcontroller devices only. Nothing + * on NXP Semiconductors LPC family microcontroller devices only. Nothing * else gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved. @@ -151,7 +151,7 @@ // Control Interface Number <0-255> // Bulk Interface Number <0-255> // Max Communication Device Buffer Size -// <8=> 8 Bytes <16=> 16 Bytes <32=> 32 Bytes <64=> 64 Bytes +// <8=> 8 Bytes <16=> 16 Bytes <32=> 32 Bytes <64=> 64 Bytes // // */ diff --git a/frameworks/CMSIS/LPC1768/lib/usb/usbcore.h b/frameworks/CMSIS/LPC1768/lib/usb/usbcore.h index 79cf657d98..86e87114ad 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/usbcore.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/usbcore.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC microcontroller devices only. Nothing else + * on NXP Semiconductors LPC microcontroller devices only. Nothing else * gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved. diff --git a/frameworks/CMSIS/LPC1768/lib/usb/usbdesc.h b/frameworks/CMSIS/LPC1768/lib/usb/usbdesc.h index b6eeddcb70..9165f29a10 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/usbdesc.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/usbdesc.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC microcontroller devices only. Nothing else + * on NXP Semiconductors LPC microcontroller devices only. Nothing else * gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved. diff --git a/frameworks/CMSIS/LPC1768/lib/usb/usbreg.h b/frameworks/CMSIS/LPC1768/lib/usb/usbreg.h index 9b2501eb29..a04963799d 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/usbreg.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/usbreg.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC family microcontroller devices only. Nothing + * on NXP Semiconductors LPC family microcontroller devices only. Nothing * else gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved. diff --git a/frameworks/CMSIS/LPC1768/lib/usb/usbuser.h b/frameworks/CMSIS/LPC1768/lib/usb/usbuser.h index 6454c2a1ba..647fa0321a 100644 --- a/frameworks/CMSIS/LPC1768/lib/usb/usbuser.h +++ b/frameworks/CMSIS/LPC1768/lib/usb/usbuser.h @@ -10,7 +10,7 @@ * warranties of fitness for purpose, satisfactory quality and * noninfringement. Keil extends you a royalty-free right to reproduce * and distribute executable files created using this software for use - * on NXP Semiconductors LPC family microcontroller devices only. Nothing + * on NXP Semiconductors LPC family microcontroller devices only. Nothing * else gives you the right to use this software. * * Copyright (c) 2009 Keil - An ARM Company. All rights reserved.