Browse Source

EXTUI and UBL compilation fixes (#13420)

pull/1/head
InsanityAutomation 6 years ago
committed by Scott Lahteine
parent
commit
3fb8489ae3
  1. 4
      Marlin/src/feature/bedlevel/ubl/ubl.cpp
  2. 9
      Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp
  3. 4
      Marlin/src/gcode/bedlevel/ubl/M421.cpp
  4. 10
      Marlin/src/lcd/extensible_ui/ui_api.cpp
  5. 5
      config/default/Configuration_adv.h
  6. 5
      config/examples/3DFabXYZ/Migbot/Configuration_adv.h
  7. 5
      config/examples/AlephObjects/TAZ4/Configuration_adv.h
  8. 5
      config/examples/AliExpress/UM2pExt/Configuration_adv.h
  9. 5
      config/examples/Anet/A2/Configuration_adv.h
  10. 5
      config/examples/Anet/A2plus/Configuration_adv.h
  11. 5
      config/examples/Anet/A6/Configuration_adv.h
  12. 5
      config/examples/Anet/A8/Configuration_adv.h
  13. 5
      config/examples/AnyCubic/i3/Configuration_adv.h
  14. 5
      config/examples/ArmEd/Configuration_adv.h
  15. 5
      config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
  16. 5
      config/examples/BIBO/TouchX/default/Configuration_adv.h
  17. 5
      config/examples/Cartesio/Configuration_adv.h
  18. 5
      config/examples/Creality/CR-10/Configuration_adv.h
  19. 5
      config/examples/Creality/CR-10S/Configuration_adv.h
  20. 5
      config/examples/Creality/CR-10_5S/Configuration_adv.h
  21. 5
      config/examples/Creality/CR-10mini/Configuration_adv.h
  22. 5
      config/examples/Creality/CR-8/Configuration_adv.h
  23. 5
      config/examples/Creality/Ender-4/Configuration_adv.h
  24. 5
      config/examples/Einstart-S/Configuration_adv.h
  25. 5
      config/examples/Felix/Configuration_adv.h
  26. 5
      config/examples/FolgerTech/i3-2020/Configuration_adv.h
  27. 5
      config/examples/Formbot/Raptor/Configuration_adv.h
  28. 5
      config/examples/Formbot/T_Rex_2+/Configuration_adv.h
  29. 5
      config/examples/Formbot/T_Rex_3/Configuration_adv.h
  30. 5
      config/examples/Geeetech/A10M/Configuration_adv.h
  31. 5
      config/examples/Geeetech/A20M/Configuration_adv.h
  32. 5
      config/examples/Geeetech/MeCreator2/Configuration_adv.h
  33. 5
      config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h
  34. 5
      config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h
  35. 5
      config/examples/Infitary/i3-M508/Configuration_adv.h
  36. 5
      config/examples/MakerParts/Configuration_adv.h
  37. 5
      config/examples/Malyan/M150/Configuration_adv.h
  38. 5
      config/examples/Malyan/M200/Configuration_adv.h
  39. 5
      config/examples/Micromake/C1/enhanced/Configuration_adv.h
  40. 5
      config/examples/Mks/Robin/Configuration_adv.h
  41. 5
      config/examples/Mks/Sbase/Configuration_adv.h
  42. 5
      config/examples/RapideLite/RL200/Configuration_adv.h
  43. 5
      config/examples/RigidBot/Configuration_adv.h
  44. 5
      config/examples/Sanguinololu/Configuration_adv.h
  45. 5
      config/examples/TheBorg/Configuration_adv.h
  46. 5
      config/examples/TinyBoy2/Configuration_adv.h
  47. 5
      config/examples/Tronxy/X3A/Configuration_adv.h
  48. 5
      config/examples/Tronxy/X5S-2E/Configuration_adv.h
  49. 5
      config/examples/UltiMachine/Archim1/Configuration_adv.h
  50. 5
      config/examples/UltiMachine/Archim2/Configuration_adv.h
  51. 5
      config/examples/VORONDesign/Configuration_adv.h
  52. 5
      config/examples/Velleman/K8200/Configuration_adv.h
  53. 5
      config/examples/Velleman/K8400/Configuration_adv.h
  54. 5
      config/examples/WASP/PowerWASP/Configuration_adv.h
  55. 5
      config/examples/gCreate/gMax1.5+/Configuration_adv.h
  56. 5
      config/examples/makibox/Configuration_adv.h
  57. 5
      config/examples/tvrrug/Round2/Configuration_adv.h
  58. 5
      config/examples/wt150/Configuration_adv.h

4
Marlin/src/feature/bedlevel/ubl/ubl.cpp

@ -32,6 +32,10 @@
#include "../../../module/motion.h"
#include "../../bedlevel/bedlevel.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extensible_ui/ui_api.h"
#endif
#include "math.h"
void unified_bed_leveling::echo_name() {

9
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

@ -49,6 +49,10 @@
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
#include "../../../core/debug_out.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extensible_ui/ui_api.h"
#endif
#include <math.h>
#define UBL_G29_P31
@ -389,12 +393,13 @@
case 2:
// Allow the user to specify the height because 10mm is a little extreme in some cases.
for (uint8_t x = (GRID_MAX_POINTS_X) / 3; x < 2 * (GRID_MAX_POINTS_X) / 3; x++) // Create a rectangular raised area in
for (uint8_t y = (GRID_MAX_POINTS_Y) / 3; y < 2 * (GRID_MAX_POINTS_Y) / 3; y++) // the center of the bed
for (uint8_t x = (GRID_MAX_POINTS_X) / 3; x < 2 * (GRID_MAX_POINTS_X) / 3; x++) // Create a rectangular raised area in
for (uint8_t y = (GRID_MAX_POINTS_Y) / 3; y < 2 * (GRID_MAX_POINTS_Y) / 3; y++) { // the center of the bed
z_values[x][y] += parser.seen('C') ? g29_constant : 9.99f;
#if ENABLED(EXTENSIBLE_UI)
ExtUI::onMeshUpdate(x, y, z_values[x][y]);
#endif
}
break;
}
}

4
Marlin/src/gcode/bedlevel/ubl/M421.cpp

@ -31,6 +31,10 @@
#include "../../gcode.h"
#include "../../../feature/bedlevel/bedlevel.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extensible_ui/ui_api.h"
#endif
/**
* M421: Set a single Mesh Bed Leveling Z coordinate
*

10
Marlin/src/lcd/extensible_ui/ui_api.cpp

@ -87,6 +87,10 @@
#endif
#endif
#if HAS_LEVELING
#include "../../feature/bedlevel.h"
#endif
#if HAS_FILAMENT_SENSOR
#include "../../feature/runout.h"
#endif
@ -417,7 +421,9 @@ namespace ExtUI {
void setJunctionDeviation_mm(const float value) {
planner.junction_deviation_mm = clamp(value, 0.01, 0.3);
planner.recalculate_max_e_jerk();
#if ENABLED(LIN_ADVANCE)
planner.recalculate_max_e_jerk();
#endif
}
#else
@ -579,7 +585,7 @@ namespace ExtUI {
#if HAS_LEVELING
bool getLevelingActive() { return planner.leveling_active; }
void setLevelingActive(const bool state) { set_bed_leveling_enabled(state) }
void setLevelingActive(const bool state) { set_bed_leveling_enabled(state); }
#if HAS_MESH
bool getMeshValid() { return leveling_is_valid(); }
bed_mesh_t getMeshArray() { return Z_VALUES; }

5
config/default/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/3DFabXYZ/Migbot/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/AlephObjects/TAZ4/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/AliExpress/UM2pExt/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Anet/A2/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Anet/A2plus/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Anet/A6/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Anet/A8/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/AnyCubic/i3/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/ArmEd/Configuration_adv.h

@ -517,8 +517,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/BIBO/TouchX/cyclops/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/BIBO/TouchX/default/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Cartesio/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/CR-10/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/CR-10S/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/CR-10_5S/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/CR-10mini/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/CR-8/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Creality/Ender-4/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Einstart-S/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Felix/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/FolgerTech/i3-2020/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Formbot/Raptor/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Formbot/T_Rex_2+/Configuration_adv.h

@ -517,8 +517,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Formbot/T_Rex_3/Configuration_adv.h

@ -517,8 +517,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Geeetech/A10M/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Geeetech/A20M/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Geeetech/MeCreator2/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Infitary/i3-M508/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/MakerParts/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Malyan/M150/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Malyan/M200/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Micromake/C1/enhanced/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Mks/Robin/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Mks/Sbase/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/RapideLite/RL200/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/RigidBot/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Sanguinololu/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/TheBorg/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/TinyBoy2/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Tronxy/X3A/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Tronxy/X5S-2E/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/UltiMachine/Archim1/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/UltiMachine/Archim2/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/VORONDesign/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Velleman/K8200/Configuration_adv.h

@ -526,8 +526,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/Velleman/K8400/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/WASP/PowerWASP/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/gCreate/gMax1.5+/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/makibox/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/tvrrug/Round2/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

5
config/examples/wt150/Configuration_adv.h

@ -513,8 +513,11 @@
// @section lcd
#if ENABLED(ULTIPANEL)
#if EITHER(ULTIPANEL, EXTENSIBLE_UI)
#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
#endif
#if ENABLED(ULTIPANEL)
#define MANUAL_E_MOVES_RELATIVE // Show LCD extruder moves as relative rather than absolute positions
#define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif

Loading…
Cancel
Save