diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index ef0d4e59b..99d90a48d 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -35,6 +35,7 @@ // 62 = Sanguinololu 1.2 and above // 63 = Melzi // 64 = STB V1.1 +// 65 = Azteeg X1 // 7 = Ultimaker // 71 = Ultimaker (Older electronics. Pre 1.5.4. This is rare) // 77 = 3Drag Controller diff --git a/Marlin/pins.h b/Marlin/pins.h index ead9c9330..c88bed4bc 100644 --- a/Marlin/pins.h +++ b/Marlin/pins.h @@ -846,7 +846,10 @@ #if MOTHERBOARD == 63 #define MELZI #endif -#if MOTHERBOARD == 62 || MOTHERBOARD == 63 || MOTHERBOARD == 64 +#if MOTHERBOARD == 65 +#define AZTEEG_X1 +#endif +#if MOTHERBOARD == 62 || MOTHERBOARD == 63 || MOTHERBOARD == 64 || MOTHERBOARD == 65 #undef MOTHERBOARD #define MOTHERBOARD 6 #define SANGUINOLOLU_V_1_2 @@ -890,6 +893,10 @@ #define FAN_PIN 4 #endif +#ifdef AZTEEG_X1 +#define FAN_PIN 4 +#endif + #define PS_ON_PIN -1 #define KILL_PIN -1