Merge pull request #1261 from wgm4321/Development

Add Filament menu and add Filament/Retract settings to config store.
This commit is contained in:
Bo Herrmannsen
2015-01-02 15:35:29 +01:00
7 changed files with 233 additions and 30 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();