🚑️ Init FastIO before anything else (#22508)

This commit is contained in:
Tanguy Pruvot
2021-08-09 04:37:27 +02:00
committed by Scott Lahteine
parent 924e4f95c8
commit bc68664c3b
5 changed files with 9 additions and 6 deletions

View File

@@ -1126,6 +1126,10 @@ inline void tmc_standby_setup() {
* - Set Marlin to RUNNING State
*/
void setup() {
#ifdef FASTIO_INIT
FASTIO_INIT();
#endif
#ifdef BOARD_PREINIT
BOARD_PREINIT(); // Low-level init (before serial init)
#endif