Add Filament menu and add Filament/Retract settings to config store.

This commit is contained in:
wgm4321
2014-12-28 20:43:14 -05:00
parent c1df713e4d
commit cb12161191
7 changed files with 232 additions and 29 deletions

View File

@ -209,7 +209,9 @@ extern float homing_feedrate[];
extern bool axis_relative_modes[];
extern int feedmultiply;
extern int extrudemultiply; // Sets extrude multiply factor (in percent) for all extruders
extern bool volumetric_enabled;
extern int extruder_multiply[EXTRUDERS]; // sets extrude multiply factor (in percent) for each extruder individually
extern float filament_size[EXTRUDERS]; // cross-sectional area of filament (in millimeters), typically around 1.75 or 2.85, 0 disables the volumetric calculations for the extruder.
extern float volumetric_multiplier[EXTRUDERS]; // reciprocal of cross-sectional area of filament (in square millimeters), stored this way to reduce computational burden in planner
extern float current_position[NUM_AXIS] ;
extern float add_homing[3];
@ -266,3 +268,5 @@ extern void digipot_i2c_init();
#endif
#endif
extern void calculate_volumetric_multipliers();