Move host_autoreport() to manage_inactivity()

This makes autoreport work more consistently.
This commit is contained in:
Yuri D'Elia 2021-06-06 17:59:13 +02:00 committed by DRracer
parent 5c8a231ed6
commit 29322d4bf3

View file

@ -1923,9 +1923,6 @@ void loop()
}
#endif //TMC2130
mmu_loop();
#if defined(AUTO_REPORT)
host_autoreport();
#endif //AUTO_REPORT
}
#define DEFINE_PGM_READ_ANY(type, reader) \
@ -9909,6 +9906,9 @@ if(0)
#endif
check_axes_activity();
mmu_loop();
#if defined(AUTO_REPORT)
host_autoreport();
#endif //AUTO_REPORT
}
void kill(const char *full_screen_message, unsigned char id)