📌 MKS pins for PSU_CONTROL (#22528)

This commit is contained in:
mks-viva
2021-08-07 22:17:43 -05:00
committed by Scott Lahteine
parent a4cd654e48
commit e0fa6ed4f8
14 changed files with 180 additions and 55 deletions

View File

@ -136,9 +136,17 @@
#endif
//
// Misc. Functions
// Power Supply Control
//
#define PS_ON_PIN P0_25 // TH3 Connector
#if ENABLED(PSU_CONTROL) // MKSPWC
#ifndef PS_ON_PIN
#define PS_ON_PIN P0_25 // SERVO
#endif
#ifndef KILL_PIN
#define KILL_PIN P1_29 // Z+
#define KILL_PIN_STATE HIGH
#endif
#endif
//
// Ethernet pins

View File

@ -215,6 +215,19 @@
#define FAN_PIN P2_04
#endif
//
// Power Supply Control
//
#if ENABLED(PSU_CONTROL) // MKSPWC
#ifndef PS_ON_PIN
#define PS_ON_PIN P2_00 // SERVO
#endif
#ifndef KILL_PIN
#define KILL_PIN P1_24 // Z+
#define KILL_PIN_STATE HIGH
#endif
#endif
//
// Misc. Functions
//