Move M105 to cpp
This commit is contained in:
parent
a41130f854
commit
99c4b9050a
@ -374,8 +374,6 @@ bool pin_is_protected(const int8_t pin) {
|
||||
return false;
|
||||
}
|
||||
|
||||
#include "gcode/temperature/M105.h"
|
||||
|
||||
#if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
|
||||
|
||||
static uint8_t auto_report_temp_interval;
|
||||
|
@ -124,7 +124,6 @@ extern void gcode_M83();
|
||||
extern void gcode_M85();
|
||||
extern void gcode_M92();
|
||||
extern void gcode_M100();
|
||||
extern void gcode_M105();
|
||||
extern void gcode_M106();
|
||||
extern void gcode_M107();
|
||||
extern void gcode_M108();
|
||||
@ -493,7 +492,7 @@ void GcodeSuite::process_next_command() {
|
||||
|
||||
|
||||
case 105: // M105: Report current temperature
|
||||
gcode_M105();
|
||||
M105();
|
||||
KEEPALIVE_STATE(NOT_BUSY);
|
||||
return; // "ok" already printed
|
||||
|
||||
|
@ -20,11 +20,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "../gcode.h"
|
||||
#include "../../module/temperature.h"
|
||||
|
||||
/**
|
||||
* M105: Read hot end and bed temperature
|
||||
*/
|
||||
void gcode_M105() {
|
||||
if (gcode.get_target_extruder_from_command()) return;
|
||||
void GcodeSuite::M105() {
|
||||
if (get_target_extruder_from_command()) return;
|
||||
|
||||
#if HAS_TEMP_HOTEND || HAS_TEMP_BED
|
||||
SERIAL_PROTOCOLPGM(MSG_OK);
|
Loading…
Reference in New Issue
Block a user