Longer default power-up delay

See MarlinFirmware/Configurations#78
This commit is contained in:
Scott Lahteine
2020-04-19 23:37:05 -05:00
parent 78fe411c7d
commit 5d0deba938
3 changed files with 8 additions and 11 deletions

View File

@ -107,11 +107,9 @@ void Power::power_on() {
lastPowerOn = millis();
if (!powersupply_on) {
PSU_PIN_ON();
#if HAS_TRINAMIC_CONFIG
delay(PSU_POWERUP_DELAY); // Wait for power to settle
restore_stepper_drivers();
#endif
delay(PSU_POWERUP_DELAY);
restore_stepper_drivers();
TERN_(HAS_TRINAMIC_CONFIG, delay(PSU_POWERUP_DELAY));
}
}