Add suspend_auto_report flag to suppress auto-report

This commit is contained in:
Scott Lahteine
2018-03-07 01:57:09 -06:00
parent ffbf63e6af
commit eb212ae073
3 changed files with 21 additions and 8 deletions

View File

@@ -188,6 +188,10 @@ extern volatile bool wait_for_heatup;
extern volatile bool wait_for_user;
#endif
#if HAS_AUTO_REPORTING
extern bool suspend_auto_report;
#endif
#if ENABLED(AUTO_BED_LEVELING_UBL)
typedef struct { double A, B, D; } linear_fit;
linear_fit* lsf_linear_fit(double x[], double y[], double z[], const int);