Generate M73 lines for silent mode only for MK3 printers

This commit is contained in:
Enrico Turri 2018-07-13 11:32:50 +02:00
parent ee67b2c7c3
commit 75cf4e0947
7 changed files with 7 additions and 330 deletions

View file

@ -133,10 +133,7 @@ public:
m_last_height(GCodeAnalyzer::Default_Height),
m_brim_done(false),
m_second_layer_things_done(false),
//############################################################################################################3
m_normal_time_estimator(GCodeTimeEstimator::Normal),
// m_default_time_estimator(GCodeTimeEstimator::Default),
//############################################################################################################3
m_silent_time_estimator(GCodeTimeEstimator::Silent),
m_silent_time_estimator_enabled(false),
m_last_obj_copy(nullptr, Point(std::numeric_limits<coord_t>::max(), std::numeric_limits<coord_t>::max()))
@ -296,10 +293,7 @@ protected:
std::pair<const PrintObject*, Point> m_last_obj_copy;
// Time estimators
//############################################################################################################3
GCodeTimeEstimator m_normal_time_estimator;
// GCodeTimeEstimator m_default_time_estimator;
//############################################################################################################3
GCodeTimeEstimator m_silent_time_estimator;
bool m_silent_time_estimator_enabled;