Browse Source

Adding hooks into the idle loop so HALs can execute 2nd plane tasks, such as serving SD card read/writes requested from the USB MSD layer

pull/1/head
etagle 7 years ago
parent
commit
b6f9c333d4
  1. 4
      Marlin/src/Marlin.cpp

4
Marlin/src/Marlin.cpp

@ -548,6 +548,10 @@ void idle(
lastUpdateMillis = millis();
}
#endif
#ifdef HAL_IDLETASK
HAL_idletask();
#endif
}
/**

Loading…
Cancel
Save