Merge pull request #9531 from thinkyhead/bf1_misc_cleanup_feb7
[1.1.x] Misc. cleanups
This commit is contained in:
commit
f089bbbc93
@ -277,8 +277,12 @@
|
|||||||
|
|
||||||
#if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
|
#if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
|
||||||
#ifndef LCD_WIDTH
|
#ifndef LCD_WIDTH
|
||||||
|
#ifdef LCD_WIDTH_OVERRIDE
|
||||||
|
#define LCD_WIDTH LCD_WIDTH_OVERRIDE
|
||||||
|
#else
|
||||||
#define LCD_WIDTH 22
|
#define LCD_WIDTH 22
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
#ifndef LCD_HEIGHT
|
#ifndef LCD_HEIGHT
|
||||||
#define LCD_HEIGHT 5
|
#define LCD_HEIGHT 5
|
||||||
#endif
|
#endif
|
||||||
|
@ -1114,15 +1114,15 @@ inline void get_serial_commands() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if DISABLED(EMERGENCY_PARSER)
|
#if DISABLED(EMERGENCY_PARSER)
|
||||||
// If command was e-stop process now
|
// Process critical commands early
|
||||||
if (strcmp(command, "M108") == 0) {
|
if (strcmp(command, "M108") == 0) {
|
||||||
wait_for_heatup = false;
|
wait_for_heatup = false;
|
||||||
#if ENABLED(ULTIPANEL)
|
#if HAS_DISPLAY
|
||||||
wait_for_user = false;
|
wait_for_user = false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
|
if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
|
||||||
if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
|
if (strcmp(command, "M410") == 0) quickstop_stepper();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|
#if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|
||||||
|
@ -1815,8 +1815,8 @@
|
|||||||
*/
|
*/
|
||||||
#if ENABLED(ULTIMAKERCONTROLLER) || ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) || ENABLED(G3D_PANEL) || ENABLED(MKS_MINI_12864)
|
#if ENABLED(ULTIMAKERCONTROLLER) || ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) || ENABLED(G3D_PANEL) || ENABLED(MKS_MINI_12864)
|
||||||
#define SDSUPPORT // Force SD Card support on for these displays
|
#define SDSUPPORT // Force SD Card support on for these displays
|
||||||
#elif ENABLED(ULTRA_LCD) && ENABLED(DOGLCD) // No panel, just graphical LCD?
|
#else
|
||||||
#define LCD_WIDTH 20 // Default is 22. For this Geeetech use 20
|
#define LCD_WIDTH_OVERRIDE 20 // Default is 22. For this Geeetech use 20.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // CONFIGURATION_H
|
#endif // CONFIGURATION_H
|
||||||
|
@ -54,10 +54,6 @@
|
|||||||
#include "cardreader.h"
|
#include "cardreader.h"
|
||||||
#include "speed_lookuptable.h"
|
#include "speed_lookuptable.h"
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTIPANEL)
|
|
||||||
#include "ubl.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if HAS_DIGIPOTSS
|
#if HAS_DIGIPOTSS
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,7 +47,7 @@ void safe_delay(millis_t ms) {
|
|||||||
|
|
||||||
#endif // EEPROM_SETTINGS
|
#endif // EEPROM_SETTINGS
|
||||||
|
|
||||||
#if ENABLED(ULTRA_LCD)
|
#if ENABLED(ULTRA_LCD) || (ENABLED(DEBUG_LEVELING_FEATURE) && (ENABLED(MESH_BED_LEVELING) || (HAS_ABL && !ABL_PLANAR)))
|
||||||
|
|
||||||
char conv[8] = { 0 };
|
char conv[8] = { 0 };
|
||||||
|
|
||||||
@ -254,4 +254,4 @@ void safe_delay(millis_t ms) {
|
|||||||
return &conv[1];
|
return &conv[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // ULTRA_LCD
|
#endif // ULTRA_LCD || (DEBUG_LEVELING_FEATURE && (MESH_BED_LEVELING || (HAS_ABL && !ABL_PLANAR)))
|
||||||
|
@ -29,7 +29,7 @@ void safe_delay(millis_t ms);
|
|||||||
void crc16(uint16_t *crc, const void * const data, uint16_t cnt);
|
void crc16(uint16_t *crc, const void * const data, uint16_t cnt);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(ULTRA_LCD) || ENABLED(DEBUG_LEVELING_FEATURE)
|
#if ENABLED(ULTRA_LCD) || (ENABLED(DEBUG_LEVELING_FEATURE) && (ENABLED(MESH_BED_LEVELING) || (HAS_ABL && !ABL_PLANAR)))
|
||||||
|
|
||||||
// Convert uint8_t to string with 123 format
|
// Convert uint8_t to string with 123 format
|
||||||
char* i8tostr3(const uint8_t x);
|
char* i8tostr3(const uint8_t x);
|
||||||
@ -81,6 +81,6 @@ void safe_delay(millis_t ms);
|
|||||||
FORCE_INLINE char *ftostr4sign(const float &x) { return itostr4sign((int)x); }
|
FORCE_INLINE char *ftostr4sign(const float &x) { return itostr4sign((int)x); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // ULTRA_LCD
|
#endif // ULTRA_LCD || (DEBUG_LEVELING_FEATURE && (MESH_BED_LEVELING || (HAS_ABL && !ABL_PLANAR)))
|
||||||
|
|
||||||
#endif // __UTILITY_H__
|
#endif // __UTILITY_H__
|
||||||
|
Loading…
Reference in New Issue
Block a user