Clean up trailing whitespace

This commit is contained in:
Scott Lahteine 2019-01-23 15:48:56 -06:00
parent 48a581ba2e
commit 6453b82a5e
3 changed files with 12 additions and 12 deletions

View file

@ -106,7 +106,7 @@ void GcodeSuite::M24() {
#ifdef ACTION_ON_RESUME #ifdef ACTION_ON_RESUME
SERIAL_ECHOLNPGM("//action:" ACTION_ON_RESUME); SERIAL_ECHOLNPGM("//action:" ACTION_ON_RESUME);
#endif #endif
ui.reset_status(); ui.reset_status();
} }
@ -114,7 +114,7 @@ void GcodeSuite::M24() {
* M25: Pause SD Print * M25: Pause SD Print
*/ */
void GcodeSuite::M25() { void GcodeSuite::M25() {
// Set initial pause flag to prevent more commands from landing in the queue while we try to pause // Set initial pause flag to prevent more commands from landing in the queue while we try to pause
#if ENABLED(SDSUPPORT) #if ENABLED(SDSUPPORT)
if (IS_SD_PRINTING()) { card.pauseSDPrint(); } if (IS_SD_PRINTING()) { card.pauseSDPrint(); }

View file

@ -135,7 +135,7 @@ void menu_main() {
#endif // !HAS_ENCODER_WHEEL && SDSUPPORT #endif // !HAS_ENCODER_WHEEL && SDSUPPORT
MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume); MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume);
MENU_ITEM(submenu, MSG_MOTION, menu_motion); MENU_ITEM(submenu, MSG_MOTION, menu_motion);
MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature); MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature);
} }

View file

@ -97,7 +97,7 @@ A stepper for E0 extruder
#define X_STEP_PIN 2 #define X_STEP_PIN 2
#define X_DIR_PIN 5 #define X_DIR_PIN 5
#define X_ENABLE_PIN 8 #define X_ENABLE_PIN 8
#define Y_STEP_PIN 3 #define Y_STEP_PIN 3
#define Y_DIR_PIN 6 #define Y_DIR_PIN 6
#define Y_ENABLE_PIN 8 #define Y_ENABLE_PIN 8
@ -137,16 +137,16 @@ A stepper for E0 extruder
* The next LCD pins RS,D4,D5,D6,D7 have internal pull-ups to 5V and as result the 5V will be on these pins. * The next LCD pins RS,D4,D5,D6,D7 have internal pull-ups to 5V and as result the 5V will be on these pins.
* Luckily these internal pull-ups have really high resistance and adding 33K pull-down resistors will create * Luckily these internal pull-ups have really high resistance and adding 33K pull-down resistors will create
* simple voltage divider that will bring the voltage down just slightly bellow 3.3V. * simple voltage divider that will bring the voltage down just slightly bellow 3.3V.
* *
* This LCD also has buttons that connected to the same ADC pin with different voltage divider combinations. * This LCD also has buttons that connected to the same ADC pin with different voltage divider combinations.
* On the LCD panel there is internal pull-up resistor of the 4.7K connected to 5V. * On the LCD panel there is internal pull-up resistor of the 4.7K connected to 5V.
* Connecting another 4.7K pull-down resistor between ADC pin and the GND * Connecting another 4.7K pull-down resistor between ADC pin and the GND
* will result in scaled values for voltage dividers and will bring them down to be always below 3.3V. * will result in scaled values for voltage dividers and will bring them down to be always below 3.3V.
* *
* For 2004 LCD to work with 3.3V board like Arduino DUE the next required: * For 2004 LCD to work with 3.3V board like Arduino DUE the next required:
* Pull-down resistors of 33K between each of LCD pins RS,D4,D5,D6,D7 and the GND. * Pull-down resistors of 33K between each of LCD pins RS,D4,D5,D6,D7 and the GND.
* Pull-down resistor of 4.7K between ADC_KEYPAD_PIN and the GND * Pull-down resistor of 4.7K between ADC_KEYPAD_PIN and the GND
* *
* All these modifications will still work with 5V based boards but require proper scaled ADC values * All these modifications will still work with 5V based boards but require proper scaled ADC values
*/ */
@ -167,7 +167,7 @@ A stepper for E0 extruder
#define LCD_PINS_D7 19 #define LCD_PINS_D7 19
#define ADC_KEYPAD_PIN 6 //60 // Analog pin 6, Digital pin 60 #define ADC_KEYPAD_PIN 6 //60 // Analog pin 6, Digital pin 60
/** /**
* The below defines will scale all the values to work properly on both * The below defines will scale all the values to work properly on both
* 5V (Mega) and 3.3V (DUE) boards with all pull-up resistors added for 3.3V * 5V (Mega) and 3.3V (DUE) boards with all pull-up resistors added for 3.3V
*/ */
@ -175,7 +175,7 @@ A stepper for E0 extruder
#define ADC_BUTTONS_VALUE_SCALE (5.0/AREF_VOLTS) // The LCD module pullup voltage is 5.0V but ADC reference voltage is 3.3V #define ADC_BUTTONS_VALUE_SCALE (5.0/AREF_VOLTS) // The LCD module pullup voltage is 5.0V but ADC reference voltage is 3.3V
#define ADC_BUTTONS_R_PULLDOWN 4.7 // Moves voltage down to be bellow 3.3V instead of 5V #define ADC_BUTTONS_R_PULLDOWN 4.7 // Moves voltage down to be bellow 3.3V instead of 5V
// the resistors values will be scaled because of 4.7K pulldown parallel resistor // the resistors values will be scaled because of 4.7K pulldown parallel resistor
#define _ADC_BUTTONS_R_SCALED(R) ((R) * (ADC_BUTTONS_R_PULLDOWN) / ((R) + ADC_BUTTONS_R_PULLDOWN)) #define _ADC_BUTTONS_R_SCALED(R) ((R) * (ADC_BUTTONS_R_PULLDOWN) / ((R) + ADC_BUTTONS_R_PULLDOWN))
// buttons pullup resistor // buttons pullup resistor
@ -191,7 +191,7 @@ A stepper for E0 extruder
/** /**
* RJ45 8 pins extruder connector * RJ45 8 pins extruder connector
* *
* 1 - GND (Please do not connect to the same GND as extruder heater to prevent ground offset voltage) * 1 - GND (Please do not connect to the same GND as extruder heater to prevent ground offset voltage)
* 2 - thermistor * 2 - thermistor
* 3 - SERVO PWM * 3 - SERVO PWM
@ -200,8 +200,8 @@ A stepper for E0 extruder
* 6 - FAN (extruder cooling) * 6 - FAN (extruder cooling)
* 7 - Probe signal * 7 - Probe signal
* 8 - 5V * 8 - 5V
* *
* Standard ethernet pairs: 1&2, 3&6, 4&5, 7&8 * Standard ethernet pairs: 1&2, 3&6, 4&5, 7&8
* Use CAT7 cable to have all pairs shielded * Use CAT7 cable to have all pairs shielded
* *
*/ */