Save ABL Bilinear Grid to EEPROM

This commit is contained in:
Scott Lahteine
2016-12-09 22:17:49 -08:00
parent 492b68f8e3
commit e42fd7813a
3 changed files with 144 additions and 61 deletions

View File

@ -330,8 +330,14 @@ float code_value_temp_diff();
#endif
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)
extern int bilinear_grid_spacing[2];
extern int bilinear_grid_spacing[2], bilinear_start[2];
extern float bed_level_grid[ABL_GRID_MAX_POINTS_X][ABL_GRID_MAX_POINTS_Y];
float bilinear_z_offset(float logical[XYZ]);
void set_bed_leveling_enabled(bool enable=true);
#endif
#if PLANNER_LEVELING
void reset_bed_level();
#endif
#if ENABLED(Z_DUAL_ENDSTOPS)