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

@ -187,6 +187,10 @@ volatile bool wait_for_heatup = true;
volatile bool wait_for_user = false;
#endif
#if HAS_AUTO_REPORTING
bool suspend_auto_report; // = false
#endif
// Inactivity shutdown
millis_t max_inactive_time = 0,
stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
@ -519,10 +523,6 @@ void idle(
gcode.host_keepalive();
#endif
#if ENABLED(AUTO_REPORT_TEMPERATURES) && HAS_TEMP_SENSOR
thermalManager.auto_report_temperatures();
#endif
manage_inactivity(
#if ENABLED(ADVANCED_PAUSE_FEATURE)
no_stepper_sleep
@ -547,13 +547,20 @@ void idle(
}
#endif
#if ENABLED(AUTO_REPORT_SD_STATUS)
card.auto_report_sd_status();
#endif
#ifdef HAL_IDLETASK
HAL_idletask();
#endif
#if HAS_AUTO_REPORTING
if (!suspend_auto_report) {
#if ENABLED(AUTO_REPORT_TEMPERATURES)
thermalManager.auto_report_temperatures();
#endif
#if ENABLED(AUTO_REPORT_SD_STATUS)
card.auto_report_sd_status();
#endif
}
#endif
}
/**

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);

View File

@ -821,6 +821,8 @@
#undef AUTO_REPORT_TEMPERATURES
#endif
#define HAS_AUTO_REPORTING (ENABLED(AUTO_REPORT_TEMPERATURES) || ENABLED(AUTO_REPORT_SD_STATUS))
/**
* This setting is also used by M109 when trying to calculate
* a ballpark safe margin to prevent wait-forever situation.