🚑️ Init FastIO before anything else (#22508)

This commit is contained in:
Tanguy Pruvot
2021-08-09 04:37:27 +02:00
committed by GitHub
parent 76c10b3e02
commit ae846c2cb2
6 changed files with 10 additions and 14 deletions

View File

@@ -1131,6 +1131,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