💥 More M306 M => M306 H (#24258)

Followup to #24253
This commit is contained in:
tombrazier 2022-05-31 18:01:59 +01:00 committed by GitHub
parent 68a7a3f88f
commit ea7bebb568
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ void GcodeSuite::M306_report(const bool forReplay/*=true*/) {
#if ENABLED(MPC_INCLUDE_FAN)
SERIAL_ECHOPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
#endif
SERIAL_ECHOPAIR_F(" M", constants.filament_heat_capacity_permm, 4);
SERIAL_ECHOPAIR_F(" H", constants.filament_heat_capacity_permm, 4);
SERIAL_EOL();
}
}

View file

@ -103,7 +103,7 @@ hotend_pid_t;
#if ENABLED(MPC_INCLUDE_FAN)
float fan255_adjustment; // M306 F
#endif
float filament_heat_capacity_permm; // M306 M
float filament_heat_capacity_permm; // M306 H
} MPC_t;
#endif