2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 06:28:31 -05: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
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-16 03:42:05 -05:00
|
|
|
#include "../gcode.h"
|
2020-01-02 19:01:38 -06:00
|
|
|
#include "../../MarlinCore.h" // for pin_is_protected
|
2017-09-16 03:42:05 -05:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2020-04-27 04:41:18 -05:00
|
|
|
#if HAS_FAN
|
2019-01-12 00:41:48 -06:00
|
|
|
#include "../../module/temperature.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* M42: Change pin status via GCode
|
|
|
|
*
|
|
|
|
* P<pin> Pin number (LED if omitted)
|
2017-11-19 20:26:53 -06:00
|
|
|
* For LPC1768 specify pin P1_02 as M42 P102,
|
|
|
|
* P1_20 as M42 P120, etc.
|
|
|
|
*
|
2017-09-06 06:28:31 -05:00
|
|
|
* S<byte> Pin status from 0 - 255
|
2018-08-13 14:59:29 -05:00
|
|
|
* I Flag to ignore Marlin's pin protection
|
2020-03-18 16:12:51 -05:00
|
|
|
*
|
|
|
|
* M<mode> Pin mode: 0=INPUT 1=OUTPUT 2=INPUT_PULLUP 3=INPUT_PULLDOWN
|
2017-09-06 06:28:31 -05:00
|
|
|
*/
|
2017-09-16 03:42:05 -05:00
|
|
|
void GcodeSuite::M42() {
|
2017-11-20 23:30:59 -06:00
|
|
|
const int pin_index = PARSED_PIN_INDEX('P', GET_PIN_MAP_INDEX(LED_PIN));
|
|
|
|
if (pin_index < 0) return;
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2017-11-20 23:30:59 -06:00
|
|
|
const pin_t pin = GET_PIN_MAP_PIN(pin_index);
|
2018-06-10 17:45:39 -05:00
|
|
|
|
2020-03-18 16:12:51 -05:00
|
|
|
if (!parser.boolval('I') && pin_is_protected(pin)) return protected_pin_err();
|
|
|
|
|
|
|
|
if (parser.seenval('M')) {
|
|
|
|
switch (parser.value_byte()) {
|
|
|
|
case 0: pinMode(pin, INPUT); break;
|
|
|
|
case 1: pinMode(pin, OUTPUT); break;
|
|
|
|
case 2: pinMode(pin, INPUT_PULLUP); break;
|
|
|
|
#ifdef INPUT_PULLDOWN
|
|
|
|
case 3: pinMode(pin, INPUT_PULLDOWN); break;
|
|
|
|
#endif
|
2020-04-27 05:16:47 -05:00
|
|
|
default: SERIAL_ECHOLNPGM("Invalid Pin Mode"); return;
|
2020-03-18 16:12:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!parser.seenval('S')) return;
|
|
|
|
const byte pin_status = parser.value_byte();
|
|
|
|
|
2020-04-27 04:41:18 -05:00
|
|
|
#if HAS_FAN
|
2017-10-26 13:37:26 -05:00
|
|
|
switch (pin) {
|
2017-09-06 06:28:31 -05:00
|
|
|
#if HAS_FAN0
|
2020-01-25 02:13:39 -06:00
|
|
|
case FAN0_PIN: thermalManager.fan_speed[0] = pin_status; return;
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
#if HAS_FAN1
|
2020-01-25 02:13:39 -06:00
|
|
|
case FAN1_PIN: thermalManager.fan_speed[1] = pin_status; return;
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
#if HAS_FAN2
|
2020-01-25 02:13:39 -06:00
|
|
|
case FAN2_PIN: thermalManager.fan_speed[2] = pin_status; return;
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN3
|
|
|
|
case FAN3_PIN: thermalManager.fan_speed[3] = pin_status; return;
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN4
|
|
|
|
case FAN4_PIN: thermalManager.fan_speed[4] = pin_status; return;
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN5
|
|
|
|
case FAN5_PIN: thermalManager.fan_speed[5] = pin_status; return;
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN6
|
|
|
|
case FAN6_PIN: thermalManager.fan_speed[6] = pin_status; return;
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN7
|
|
|
|
case FAN7_PIN: thermalManager.fan_speed[7] = pin_status; return;
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
2020-01-25 02:13:39 -06:00
|
|
|
|
|
|
|
pinMode(pin, OUTPUT);
|
|
|
|
extDigitalWrite(pin, pin_status);
|
|
|
|
analogWrite(pin, pin_status);
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|