Commit cec7836 1 parent e4a8c69 commit cec7836 Copy full SHA for cec7836
File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 3875
3875
* Auto-report temperatures with M155 S<seconds>
3876
3876
*/
3877
3877
#define AUTO_REPORT_TEMPERATURES
3878
+ #if ENABLED (AUTO_REPORT_TEMPERATURES ) && TEMP_SENSOR_REDUNDANT
3879
+ //#define AUTO_REPORT_REDUNDANT // Include the "R" sensor in the auto-report
3880
+ #endif
3878
3881
3879
3882
/**
3880
3883
* Auto-report position with M154 S<seconds>
Original file line number Diff line number Diff line change @@ -3948,7 +3948,10 @@ void Temperature::isr() {
3948
3948
3949
3949
#if ENABLED(AUTO_REPORT_TEMPERATURES)
3950
3950
AutoReporter<Temperature::AutoReportTemp> Temperature::auto_reporter;
3951
- void Temperature::AutoReportTemp::report () { print_heater_states (active_extruder); SERIAL_EOL (); }
3951
+ void Temperature::AutoReportTemp::report () {
3952
+ print_heater_states (active_extruder OPTARG (HAS_TEMP_REDUNDANT, ENABLED (AUTO_REPORT_REDUNDANT)));
3953
+ SERIAL_EOL ();
3954
+ }
3952
3955
#endif
3953
3956
3954
3957
#if HAS_HOTEND && HAS_STATUS_MESSAGE
You can’t perform that action at this time.
0 commit comments