|
@@ -710,10 +710,6 @@ void setup() {
|
710
|
710
|
if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
|
711
|
711
|
HAL_clear_reset_source();
|
712
|
712
|
|
713
|
|
- #if ENABLED(USE_WATCHDOG) //reinit watchdog after HAL_get_reset_source call
|
714
|
|
- watchdog_init();
|
715
|
|
- #endif
|
716
|
|
-
|
717
|
713
|
SERIAL_ECHOPGM(MSG_MARLIN);
|
718
|
714
|
SERIAL_CHAR(' ');
|
719
|
715
|
SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
|
|
@@ -879,6 +875,10 @@ void setup() {
|
879
|
875
|
#if ENABLED(PARKING_EXTRUDER)
|
880
|
876
|
pe_magnet_init();
|
881
|
877
|
#endif
|
|
878
|
+
|
|
879
|
+ #if ENABLED(USE_WATCHDOG) // Reinit watchdog after HAL_get_reset_source call
|
|
880
|
+ watchdog_init();
|
|
881
|
+ #endif
|
882
|
882
|
}
|
883
|
883
|
|
884
|
884
|
/**
|