Fix M110 compatibility (again).

Add 25mm to manual filament load extrusion
This commit is contained in:
Ted Hess 2017-11-22 16:55:13 -05:00
parent c9db6ac451
commit ae9f975e07
2 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,13 @@
# Changelog of local customizations
## Version 22-Nov-2017
### Updates and mods
- Add extra 25mm to manual (LCD) filament load extrusion.
- Merge latest Prusa3D firmware release v3.1.0 changes.
### Bug fixes
- Fix M110 G-code compatibility
## Version 9-Nov-2017
### New features

View File

@ -2338,7 +2338,7 @@ void gcode_M701() {
current_position[E_AXIS] += 70;
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 400 / 60, active_extruder); //fast sequence
current_position[E_AXIS] += 25;
current_position[E_AXIS] += 50;
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], 100 / 60, active_extruder); //slow sequence
st_synchronize();
@ -4867,8 +4867,6 @@ Sigma_Exit:
case 110: // M110 - reset line pos
if (code_seen('N'))
gcode_LastN = code_value_long();
else
gcode_LastN = 0;
break;
#ifdef HOST_KEEPALIVE_FEATURE
case 113: // M113 - Get or set Host Keepalive interval