2017-09-17 08:43:45 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-17 08:43:45 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-17 08:43:45 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2019-03-17 04:43:06 +00:00
|
|
|
#if EITHER(EXT_SOLENOID, MANUAL_SOLENOID_CONTROL)
|
2017-09-17 08:43:45 +00:00
|
|
|
|
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../feature/solenoid.h"
|
2018-10-07 22:07:12 +00:00
|
|
|
#include "../../module/motion.h"
|
2017-09-17 08:43:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* M380: Enable solenoid on the active extruder
|
2018-10-07 22:07:12 +00:00
|
|
|
*
|
|
|
|
* S<index> to specify a solenoid (Requires MANUAL_SOLENOID_CONTROL)
|
2017-09-17 08:43:45 +00:00
|
|
|
*/
|
2018-10-07 22:07:12 +00:00
|
|
|
void GcodeSuite::M380() {
|
|
|
|
#if ENABLED(MANUAL_SOLENOID_CONTROL)
|
2019-02-06 12:34:53 +00:00
|
|
|
enable_solenoid(parser.intval('S', active_extruder));
|
2018-10-07 22:07:12 +00:00
|
|
|
#else
|
|
|
|
enable_solenoid_on_active_extruder();
|
|
|
|
#endif
|
|
|
|
}
|
2017-09-17 08:43:45 +00:00
|
|
|
|
|
|
|
/**
|
2019-02-06 12:34:53 +00:00
|
|
|
* M381: Disable all solenoids if EXT_SOLENOID
|
|
|
|
* Disable selected/active solenoid if MANUAL_SOLENOID_CONTROL
|
2017-09-17 08:43:45 +00:00
|
|
|
*/
|
2019-02-12 20:25:35 +00:00
|
|
|
void GcodeSuite::M381() {
|
2019-02-06 12:34:53 +00:00
|
|
|
#if ENABLED(MANUAL_SOLENOID_CONTROL)
|
|
|
|
disable_solenoid(parser.intval('S', active_extruder));
|
|
|
|
#else
|
|
|
|
disable_all_solenoids();
|
|
|
|
#endif
|
|
|
|
}
|
2017-09-17 08:43:45 +00:00
|
|
|
|
2018-10-07 22:07:12 +00:00
|
|
|
#endif // EXT_SOLENOID || MANUAL_SOLENOID_CONTROL
|