2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-16 19:25:27 +02:00
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/temperature.h"
|
|
|
|
|
2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* M105: Read hot end and bed temperature
|
|
|
|
*/
|
2017-09-16 19:25:27 +02:00
|
|
|
void GcodeSuite::M105() {
|
2018-11-15 00:33:04 +01:00
|
|
|
|
|
|
|
const int8_t target_extruder = get_target_extruder_from_command();
|
|
|
|
if (target_extruder < 0) return;
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-03-07 08:53:50 +01:00
|
|
|
#if HAS_TEMP_SENSOR
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_ECHOPGM(MSG_OK);
|
2019-06-28 04:29:53 +02:00
|
|
|
thermalManager.print_heater_states(target_extruder
|
|
|
|
#if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
|
|
|
|
, parser.boolval('R')
|
|
|
|
#endif
|
|
|
|
);
|
2018-03-11 04:40:45 +01:00
|
|
|
#else // !HAS_TEMP_SENSOR
|
2019-10-15 20:30:52 +02:00
|
|
|
// Hosts such as printrun send M105 to check if firmware is responding.
|
|
|
|
SERIAL_ECHOPGM(MSG_OK);
|
|
|
|
SERIAL_ECHOPGM(" T:0");
|
2017-09-06 13:28:31 +02:00
|
|
|
#endif
|
|
|
|
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_EOL();
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|