z homing sound fix, for now until the actual cause is found..

hackerspace-green
Bernhard 2011-12-07 23:08:13 +01:00
parent 986f0ba76c
commit 754d2d69b2
1 changed files with 8 additions and 0 deletions

View File

@ -706,6 +706,10 @@ void st_init()
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
void st_synchronize()
{
@ -713,6 +717,10 @@ void st_synchronize()
manage_heater();
manage_inactivity(1);
LCD_STATUS;
#ifdef TEMPORARY_Z_HOME_SOUND_FIX
_delay_ms(200);
_delay_ms(200);
#endif
}
}