|
@@ -108,8 +108,6 @@
|
108
|
108
|
#define TEMP_0_PIN 1 // Analog Input
|
109
|
109
|
#define TEMP_1_PIN 2 // Analog Input
|
110
|
110
|
#define TEMP_2_PIN 3 // Analog Input
|
111
|
|
-#define TEMP_3_PIN -1 // fewer compiler warnings
|
112
|
|
-#define TEMP_4_PIN -1 // fewer compiler warnings
|
113
|
111
|
#define TEMP_BED_PIN 0 // Analog Input
|
114
|
112
|
|
115
|
113
|
// SPI for Max6675 or Max31855 Thermocouple
|
|
@@ -130,7 +128,6 @@
|
130
|
128
|
#ifndef FAN_PIN
|
131
|
129
|
#define FAN_PIN 12
|
132
|
130
|
#endif
|
133
|
|
-#define CONTROLLER_FAN_PIN -1
|
134
|
131
|
|
135
|
132
|
//
|
136
|
133
|
// Misc. Functions
|
|
@@ -170,9 +167,9 @@
|
170
|
167
|
#define STAT_LED_BLUE_PIN 29
|
171
|
168
|
#define STAT_LED_RED_PIN 23
|
172
|
169
|
#define DOGLCD_CS 17
|
173
|
|
- #define DOGLCD_SCK 76 //SCK_PIN - required so that the DUE hardware SPI will be used
|
174
|
|
- #define DOGLCD_MOSI 75 //MOSI_PIN - required so that the DUE hardware SPI will be used
|
175
|
|
- #define DOGLCD_MISO 74 //MISO_PIN
|
|
170
|
+ #define DOGLCD_SCK 76 // SCK_PIN - These are required for DUE Hardware SPI
|
|
171
|
+ #define DOGLCD_MOSI 75 // MOSI_PIN
|
|
172
|
+ #define DOGLCD_MISO 74 // MISO_PIN
|
176
|
173
|
#endif
|
177
|
174
|
|
178
|
175
|
|