Reorganize includes and declarations

This commit is contained in:
Scott Lahteine
2018-10-28 02:59:21 -05:00
parent 43cf913048
commit b063b1b722
6 changed files with 44 additions and 31 deletions

View File

@ -348,7 +348,6 @@ void menu_move();
void lcd_move_z();
void lcd_synchronize(PGM_P const msg=NULL);
void line_to_z(const float &z);
void _lcd_draw_homing();
void watch_temp_callback_E0();
@ -359,6 +358,12 @@ void watch_temp_callback_E4();
void watch_temp_callback_E5();
void watch_temp_callback_bed();
#define HAS_LINE_TO_Z (ENABLED(DELTA) || ENABLED(PROBE_MANUALLY) || ENABLED(MESH_BED_LEVELING) || ENABLED(LEVEL_BED_CORNERS))
#if HAS_LINE_TO_Z
void line_to_z(const float &z);
#endif
#if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(PID_AUTOTUNE_MENU) || ENABLED(ADVANCED_PAUSE_FEATURE)
void lcd_enqueue_command(const char * const cmd);
void lcd_enqueue_commands_P(PGM_P const cmd);