Browse Source

Fix & clean up ExtUI (#14748)

pull/1/head
Ludy 5 years ago
committed by Scott Lahteine
parent
commit
97e9c95f47
  1. 4
      Marlin/src/feature/bedlevel/mbl/mesh_bed_leveling.cpp
  2. 4
      Marlin/src/gcode/bedlevel/mbl/G29.cpp
  3. 49
      Marlin/src/lcd/extui_malyan_lcd.cpp
  4. 4
      Marlin/src/module/configuration_store.cpp

4
Marlin/src/feature/bedlevel/mbl/mesh_bed_leveling.cpp

@ -28,6 +28,10 @@
#include "../../../module/motion.h"
#include "../../../feature/bedlevel/bedlevel.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extensible_ui/ui_api.h"
#endif
mesh_bed_leveling mbl;

4
Marlin/src/gcode/bedlevel/mbl/G29.cpp

@ -37,6 +37,10 @@
#include "../../../lcd/ultralcd.h"
#include "../../../module/motion.h"
#include "../../../module/stepper.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extensible_ui/ui_api.h"
#endif
// Save 130 bytes with non-duplication of PSTR
inline void echo_not_entered(const char c) { SERIAL_CHAR(c); SERIAL_ECHOLNPGM(" not entered."); }

49
Marlin/src/lcd/extui_malyan_lcd.cpp

@ -114,20 +114,18 @@ void write_to_lcd(const char * const message) {
void process_lcd_c_command(const char* command) {
switch (command[0]) {
case 'C': // Cope with both V1 early rev and later LCDs.
case 'S': {
case 'S':
feedrate_percentage = atoi(command + 1) * 10;
LIMIT(feedrate_percentage, 10, 999);
} break;
case 'T': {
thermalManager.setTargetHotend(atoi(command + 1), 0);
} break;
case 'P': {
thermalManager.setTargetBed(atoi(command + 1));
} break;
break;
default:
SERIAL_ECHOLNPAIR("UNKNOWN C COMMAND", command);
return;
case 'T': thermalManager.setTargetHotend(atoi(command + 1), 0); break;
#if HAS_HEATED_BED
case 'P': thermalManager.setTargetBed(atoi(command + 1)); break;
#endif
default: SERIAL_ECHOLNPAIR("UNKNOWN C COMMAND", command);
}
}
@ -148,21 +146,20 @@ void process_lcd_eb_command(const char* command) {
char message_buffer[MAX_CURLY_COMMAND];
sprintf_P(message_buffer,
PSTR("{T0:%03.0f/%03i}{T1:000/000}{TP:%03.0f/%03i}{TQ:%03i}{TT:%s}"),
thermalManager.degHotend(0),
thermalManager.degTargetHotend(0),
#if HAS_HEATED_BED
thermalManager.degBed(),
thermalManager.degTargetBed(),
#else
0, 0,
#endif
#if ENABLED(SDSUPPORT)
card.percentDone(),
#else
0,
#endif
elapsed_buffer);
PSTR("{T0:%03.0f/%03i}{T1:000/000}{TP:%03.0f/%03i}{TQ:%03i}{TT:%s}"),
thermalManager.degHotend(0), thermalManager.degTargetHotend(0),
#if HAS_HEATED_BED
thermalManager.degBed(), thermalManager.degTargetBed(),
#else
0, 0,
#endif
#if ENABLED(SDSUPPORT)
card.percentDone(),
#else
0,
#endif
elapsed_buffer
);
write_to_lcd(message_buffer);
} break;

4
Marlin/src/module/configuration_store.cpp

@ -98,10 +98,8 @@
#include "../feature/runout.h"
#endif
#include "../lcd/extensible_ui/ui_api.h"
#if ENABLED(EXTRA_LIN_ADVANCE_K)
extern float saved_extruder_advance_K[EXTRUDERS];
extern float saved_extruder_advance_K[EXTRUDERS];
#endif
#if EXTRUDERS > 1

Loading…
Cancel
Save