Changes supporting "Prussia3D" MK3 (#21617)
This commit is contained in:
@ -27,7 +27,10 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#define BOARD_INFO_NAME "Einsy Rambo"
|
||||
#define BOARD_INFO_NAME "Einsy Rambo"
|
||||
#define DEFAULT_MACHINE_NAME "Prusa MK3"
|
||||
|
||||
//#define MK3_FAN_PINS
|
||||
|
||||
//
|
||||
// TMC2130 Configuration_adv defaults for EinsyRambo
|
||||
@ -123,11 +126,19 @@
|
||||
#define HEATER_BED_PIN 4
|
||||
|
||||
#ifndef FAN_PIN
|
||||
#define FAN_PIN 8
|
||||
#ifdef MK3_FAN_PINS
|
||||
#define FAN_PIN 6
|
||||
#else
|
||||
#define FAN_PIN 8
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef FAN1_PIN
|
||||
#define FAN1_PIN 6
|
||||
#ifdef MK3_FAN_PINS
|
||||
#define FAN_PIN -1
|
||||
#else
|
||||
#define FAN_PIN 6
|
||||
#endif
|
||||
#endif
|
||||
|
||||
//
|
||||
@ -192,3 +203,5 @@
|
||||
|
||||
#endif // IS_ULTIPANEL || TOUCH_UI_ULTIPANEL
|
||||
#endif // HAS_WIRED_LCD
|
||||
|
||||
#undef MK3_FAN_PINS
|
||||
|
Reference in New Issue
Block a user