[2.0.x] Board specific init macro (#11170)

This commit is contained in:
TheLongAndOnly
2018-07-02 06:11:42 +02:00
committed by Scott Lahteine
parent 5616581eb1
commit cedc158106
2 changed files with 34 additions and 20 deletions

View File

@@ -719,6 +719,10 @@ void setup() {
tmc2208_serial_begin();
#endif
#ifdef BOARD_INIT
BOARD_INIT();
#endif
// Check startup - does nothing if bootloader sets MCUSR to 0
byte mcu = HAL_get_reset_source();
if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);