Refactor LCD menus

This commit is contained in:
Scott Lahteine
2018-10-23 16:00:34 -05:00
parent ac5f2762b7
commit 2bf18950ab
25 changed files with 5720 additions and 5442 deletions

View File

@ -108,7 +108,7 @@ XYZ_DEFS(signed char, home_dir, HOME_DIR);
extern bool soft_endstops_enabled;
void clamp_to_software_endstops(float target[XYZ]);
#else
#define soft_endstops_enabled false
constexpr bool soft_endstops_enabled = false;
#define clamp_to_software_endstops(x) NOOP
#endif