Use PSTR versions of lcd_status... to save SRAM

This commit is contained in:
Scott Lahteine
2017-04-02 00:45:39 -05:00
parent 34e2420b9b
commit 0e6ec34228
4 changed files with 19 additions and 16 deletions

View File

@ -128,7 +128,7 @@
extern bool code_value_bool();
extern bool code_has_value();
extern void lcd_init();
extern void lcd_setstatuspgm(const char* const message, uint8_t level);
extern void lcd_setstatuspgm(const char* const message, const uint8_t level);
#define PLANNER_XY_FEEDRATE() (min(planner.max_feedrate_mm_s[X_AXIS], planner.max_feedrate_mm_s[Y_AXIS])) //bob
bool prepare_move_to_destination_cartesian();
void line_to_destination();