|
@@ -69,7 +69,9 @@ void GcodeSuite::M306_report(const bool forReplay/*=true*/) {
|
69
|
69
|
SERIAL_ECHOPAIR_F(" C", constants.block_heat_capacity, 2);
|
70
|
70
|
SERIAL_ECHOPAIR_F(" R", constants.sensor_responsiveness, 4);
|
71
|
71
|
SERIAL_ECHOPAIR_F(" A", constants.ambient_xfer_coeff_fan0, 4);
|
72
|
|
- SERIAL_ECHOLNPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
|
|
72
|
+ #if ENABLED(MPC_INCLUDE_FAN)
|
|
73
|
+ SERIAL_ECHOLNPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
|
|
74
|
+ #endif
|
73
|
75
|
}
|
74
|
76
|
}
|
75
|
77
|
|