2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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-17 05:38:39 +00:00
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2017-12-20 02:08:24 +00:00
|
|
|
#if ENABLED(EXTENDED_CAPABILITIES_REPORT)
|
|
|
|
static void cap_line(const char * const name, bool ena=false) {
|
|
|
|
SERIAL_PROTOCOLPGM("Cap:");
|
|
|
|
serialprintPGM(name);
|
|
|
|
SERIAL_PROTOCOLLN(int(ena ? 1 : 0));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* M115: Capabilities string
|
|
|
|
*/
|
2017-09-17 05:38:39 +00:00
|
|
|
void GcodeSuite::M115() {
|
2017-09-06 11:28:31 +00:00
|
|
|
SERIAL_PROTOCOLLNPGM(MSG_M115_REPORT);
|
|
|
|
|
|
|
|
#if ENABLED(EXTENDED_CAPABILITIES_REPORT)
|
|
|
|
|
2017-12-03 05:07:21 +00:00
|
|
|
// SERIAL_XON_XOFF
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("SERIAL_XON_XOFF")
|
|
|
|
#if ENABLED(SERIAL_XON_XOFF)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-12-03 05:07:21 +00:00
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
// EEPROM (M500, M501)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("EEPROM")
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
|
|
|
// Volumetric Extrusion (M200)
|
|
|
|
cap_line(PSTR("VOLUMETRIC")
|
|
|
|
#if DISABLED(NO_VOLUMETRICS)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// AUTOREPORT_TEMP (M155)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("AUTOREPORT_TEMP")
|
|
|
|
#if ENABLED(AUTO_REPORT_TEMPERATURES)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// PROGRESS (M530 S L, M531 <file>, M532 X L)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("PROGRESS"));
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// Print Job timer M75, M76, M77
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("PRINT_JOB"), true);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// AUTOLEVEL (G29)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("AUTOLEVEL")
|
|
|
|
#if HAS_AUTOLEVEL
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// Z_PROBE (G30)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("Z_PROBE")
|
|
|
|
#if HAS_BED_PROBE
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// MESH_REPORT (M420 V)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("LEVELING_DATA")
|
|
|
|
#if HAS_LEVELING
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2017-10-15 07:15:19 +00:00
|
|
|
// BUILD_PERCENT (M73)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("BUILD_PERCENT")
|
|
|
|
#if ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-10-15 07:15:19 +00:00
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
// SOFTWARE_POWER (M80, M81)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("SOFTWARE_POWER")
|
|
|
|
#if HAS_POWER_SWITCH
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// CASE LIGHTS (M355)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("TOGGLE_LIGHTS")
|
|
|
|
#if HAS_CASE_LIGHT
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
cap_line(PSTR("CASE_LIGHT_BRIGHTNESS")
|
|
|
|
#if HAS_CASE_LIGHT
|
|
|
|
, USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
// EMERGENCY_PARSER (M108, M112, M410)
|
2017-12-20 02:08:24 +00:00
|
|
|
cap_line(PSTR("EMERGENCY_PARSER")
|
|
|
|
#if ENABLED(EMERGENCY_PARSER)
|
|
|
|
, true
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
|
|
|
#endif // EXTENDED_CAPABILITIES_REPORT
|
|
|
|
}
|