Return from loop() on non-AVR boards (#16390)

This commit is contained in:
Lino Barreca 2020-01-02 04:13:43 +01:00 committed by Scott Lahteine
parent 89f9902053
commit ac32ed74b4

View file

@ -1128,10 +1128,9 @@ void setup() {
* - Call inactivity manager
*/
void loop() {
do {
for (;;) {
idle(); // Do an idle first so boot is slightly faster
idle();
#if ENABLED(SDSUPPORT)
card.checkautostart();
@ -1141,5 +1140,10 @@ void loop() {
queue.advance();
endstops.event_handler();
}
} while (false // Return to caller for best compatibility
#ifdef __AVR__
|| true // Loop forever on slower (AVR) boards
#endif
);
}