z homing sound fix, for now until the actual cause is found..
This commit is contained in:
parent
986f0ba76c
commit
754d2d69b2
@ -706,6 +706,10 @@ void st_init()
|
|||||||
sei();
|
sei();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define TEMPORARY_Z_HOME_SOUND_FIX
|
||||||
|
#ifdef TEMPORARY_Z_HOME_SOUND_FIX
|
||||||
|
#include <util/delay.h>
|
||||||
|
#endif
|
||||||
// Block until all buffered steps are executed
|
// Block until all buffered steps are executed
|
||||||
void st_synchronize()
|
void st_synchronize()
|
||||||
{
|
{
|
||||||
@ -713,6 +717,10 @@ void st_synchronize()
|
|||||||
manage_heater();
|
manage_heater();
|
||||||
manage_inactivity(1);
|
manage_inactivity(1);
|
||||||
LCD_STATUS;
|
LCD_STATUS;
|
||||||
|
#ifdef TEMPORARY_Z_HOME_SOUND_FIX
|
||||||
|
_delay_ms(200);
|
||||||
|
_delay_ms(200);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user