Fix M110 compatibility (again).
Add 25mm to manual filament load extrusion
This commit is contained in:
parent
c9db6ac451
commit
ae9f975e07
|
|
@ -1,5 +1,13 @@
|
||||||
# Changelog of local customizations
|
# 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
|
## Version 9-Nov-2017
|
||||||
### New features
|
### New features
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2338,7 +2338,7 @@ void gcode_M701() {
|
||||||
current_position[E_AXIS] += 70;
|
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
|
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
|
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();
|
st_synchronize();
|
||||||
|
|
||||||
|
|
@ -4867,8 +4867,6 @@ Sigma_Exit:
|
||||||
case 110: // M110 - reset line pos
|
case 110: // M110 - reset line pos
|
||||||
if (code_seen('N'))
|
if (code_seen('N'))
|
||||||
gcode_LastN = code_value_long();
|
gcode_LastN = code_value_long();
|
||||||
else
|
|
||||||
gcode_LastN = 0;
|
|
||||||
break;
|
break;
|
||||||
#ifdef HOST_KEEPALIVE_FEATURE
|
#ifdef HOST_KEEPALIVE_FEATURE
|
||||||
case 113: // M113 - Get or set Host Keepalive interval
|
case 113: // M113 - Get or set Host Keepalive interval
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue