Skip to content
Snippets Groups Projects
Commit fd15b149 authored by Roxy-3D's avatar Roxy-3D Committed by Scott Lahteine
Browse files

add I parameter to M42 to allow access to sensitive pins

parent 11b411a8
Branches
Tags
No related merge requests found
......@@ -32,6 +32,7 @@
* P1_20 as M42 P120, etc.
*
* S<byte> Pin status from 0 - 255
* I Flag to ignore Marlin's pin protection
*/
void GcodeSuite::M42() {
if (!parser.seenval('S')) return;
......@@ -42,7 +43,7 @@ void GcodeSuite::M42() {
const pin_t pin = GET_PIN_MAP_PIN(pin_index);
if (pin_is_protected(pin)) return protected_pin_err();
if (!parser.boolval('I') && pin_is_protected(pin)) return protected_pin_err();
pinMode(pin, OUTPUT);
digitalWrite(pin, pin_status);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment