added Azteeg X1 motherboard

This commit is contained in:
lajos 2013-06-15 16:58:17 -04:00
parent 73569d891f
commit 02dee80fa5
2 changed files with 9 additions and 1 deletions

View File

@ -35,6 +35,7 @@
// 62 = Sanguinololu 1.2 and above // 62 = Sanguinololu 1.2 and above
// 63 = Melzi // 63 = Melzi
// 64 = STB V1.1 // 64 = STB V1.1
// 65 = Azteeg X1
// 7 = Ultimaker // 7 = Ultimaker
// 71 = Ultimaker (Older electronics. Pre 1.5.4. This is rare) // 71 = Ultimaker (Older electronics. Pre 1.5.4. This is rare)
// 77 = 3Drag Controller // 77 = 3Drag Controller

View File

@ -846,7 +846,10 @@
#if MOTHERBOARD == 63 #if MOTHERBOARD == 63
#define MELZI #define MELZI
#endif #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 #undef MOTHERBOARD
#define MOTHERBOARD 6 #define MOTHERBOARD 6
#define SANGUINOLOLU_V_1_2 #define SANGUINOLOLU_V_1_2
@ -890,6 +893,10 @@
#define FAN_PIN 4 #define FAN_PIN 4
#endif #endif
#ifdef AZTEEG_X1
#define FAN_PIN 4
#endif
#define PS_ON_PIN -1 #define PS_ON_PIN -1
#define KILL_PIN -1 #define KILL_PIN -1