Clean up trailing whitespace

This commit is contained in:
Scott Lahteine 2018-08-14 00:55:22 -05:00
parent ccf65c5397
commit 6964e1a95a
7 changed files with 7 additions and 7 deletions

View File

@ -561,7 +561,7 @@
#define X_STOP_INVERTING true
#define Y_STOP_INVERTING true
#define Z_STOP_INVERTING true
#define Z_STOP_INVERTING true
// Enable this feature if all enabled endstop pins are interrupt-capable.
// This will remove the need to poll the interrupt pins, saving many CPU cycles.

View File

@ -84,7 +84,7 @@ PF Part Fan (PWM)
ZS Z-Endstop (Max)
YS Y-Endstop (Min)
XS X-Endstop (Min)
PS SPST Switch to enable DC 24v
PS SPST Switch to enable DC 24v
BT Bed Thermistor (header not populated)
ET Extruder Thermistor
PT1 PT100 Thermocouple (not populated)

View File

@ -453,7 +453,7 @@
#elif HAS_DRIVER(LV8729)
#define MINIMUM_STEPPER_DIR_DELAY 500
#elif HAS_DRIVER(A5984)
#define MINIMUM_STEPPER_DIR_DELAY 400
#define MINIMUM_STEPPER_DIR_DELAY 400
#elif HAS_DRIVER(A4988)
#define MINIMUM_STEPPER_DIR_DELAY 200
#elif HAS_TRINAMIC || HAS_DRIVER(TMC2660) || HAS_DRIVER(TMC2130_STANDALONE) || HAS_DRIVER(TMC2208_STANDALONE) || HAS_DRIVER(TMC26X_STANDALONE) || HAS_DRIVER(TMC2660_STANDALONE)

View File

@ -183,7 +183,7 @@
U8GLIB_MINI12864_2X u8g(DOGLCD_CS, DOGLCD_A0); // 4 stripes
#elif ENABLED(U8GLIB_SH1106_EINSTART)
// Connected via motherboard header
U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);
U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);
#else
// for regular DOGM128 display with HW-SPI
//U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0); // HW-SPI Com: CS, A0 // 8 stripes

View File

@ -74,7 +74,7 @@ void PrintCounter::initStats() {
data = { 0, 0, 0, 0, 0.0 };
saveStats();
uint16_t crc = 0;
int a = address;
persistentStore.access_start();

View File

@ -45,7 +45,7 @@
// Limit Switches
//
#define X_STOP_PIN 44 // 2560 PIN 40
#define Y_STOP_PIN 43 // 2560 PIN 41
#define Y_STOP_PIN 43 // 2560 PIN 41
#define Z_STOP_PIN 42 // 2560 PIN 42
//

View File

@ -41,7 +41,7 @@ class Print {
public:
Print() : write_error(0) {}
virtual ~Print() {}
int getWriteError() { return write_error; }
void clearWriteError() { setWriteError(0); }