Heat management now performed between moves if DISABLE_CHECK_DURING_TRAVEL is enabled
This commit is contained in:
parent
df7e8feffa
commit
6e246d4ead
2 changed files with 3 additions and 2 deletions
|
|
@ -449,7 +449,7 @@ inline void process_commands()
|
|||
{
|
||||
case 0: // G0 -> G1
|
||||
case 1: // G1
|
||||
#ifdef DISABLE_CHECK_DURING_ACC || DISABLE_CHECK_DURING_MOVE
|
||||
#ifdef DISABLE_CHECK_DURING_ACC || DISABLE_CHECK_DURING_MOVE || DISABLE_CHECK_DURING_TRAVEL
|
||||
manage_heater();
|
||||
#endif
|
||||
get_coordinates(); // For X Y Z E F
|
||||
|
|
|
|||
|
|
@ -49,7 +49,8 @@ long max_travel_acceleration_units_per_sq_second[] = {500,500,50}; // X, Y, Z ma
|
|||
//Uncomment the following line to disable heat management during the move
|
||||
//#define DISABLE_CHECK_DURING_MOVE
|
||||
#endif
|
||||
//Comment the following line to enable heat management during travel moves. Probably this should be commented if using PID.
|
||||
//Uncomment the following line to disable heat management during travel moves, strongly recommended if you are missing steps mid print.
|
||||
//Probably this should remain commented if are using PID.
|
||||
#define DISABLE_CHECK_DURING_TRAVEL
|
||||
|
||||
//Experimental temperature smoothing - only uncomment this if your temp readings are noisy
|
||||
|
|
|
|||
Loading…
Reference in a new issue