The safe_delay() is now globaly accessible

This commit is contained in:
João Brázio
2016-07-14 21:40:11 +01:00
parent 9a00108cb6
commit a8758619ec
4 changed files with 36 additions and 10 deletions

View File

@@ -443,15 +443,6 @@ unsigned lcd_print(char c) { return charset_mapper(c); }
lcd.setCursor(indent, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" )); lcd.print('\x03');
}
void safe_delay(uint16_t del){
while (del > 50) {
del -= 50;
delay(50);
thermalManager.manage_heater();
}
delay(del);
}
void bootscreen() {
byte top_left[8] = {
B00000,