Changes supporting "Prussia3D" MK3 (#21617)

This commit is contained in:
Scott Lahteine
2021-04-20 00:44:19 -05:00
committed by GitHub
parent f52351d116
commit 6bb10b1898
5 changed files with 37 additions and 38 deletions

View File

@ -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