Change the pins around to fit our connection scheme.

hackerspace-green
Sergiusz B 2013-04-28 20:10:18 +02:00
parent 6330a35209
commit 3325a1eeae
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ ARDUINO_INSTALL_DIR ?= ../../arduino-0022
ARDUINO_VERSION ?= 22
# You can optionally set a path to the avr-gcc tools. Requires a trailing slash. (ex: /usr/local/avr-gcc/bin)
AVR_TOOLS_PATH ?=
AVR_TOOLS_PATH ?= /home/q3k/arduino-1.0.4/hardware/tools/avr/bin/
#Programmer configuration
UPLOAD_RATE ?= 115200

View File

@ -358,7 +358,7 @@
#define LED_PIN 13
#if MOTHERBOARD == 33
#define FAN_PIN 8 // (Sprinter config)
#define FAN_PIN 9 // (Sprinter config)
#else
#define FAN_PIN 4 // IO pin. Buffer needed
#endif
@ -374,13 +374,13 @@
#if MOTHERBOARD == 33
#define HEATER_1_PIN -1
#else
#define HEATER_1_PIN 8 // EXTRUDER 2 (FAN On Sprinter)
#define HEATER_1_PIN 9 // EXTRUDER 2 (FAN On Sprinter)
#endif
#define HEATER_2_PIN -1
#define TEMP_0_PIN 13 // ANALOG NUMBERING
#define TEMP_1_PIN 15 // ANALOG NUMBERING
#define TEMP_2_PIN -1 // ANALOG NUMBERING
#define HEATER_BED_PIN 9 // BED
#define HEATER_BED_PIN 8 // BED
#define TEMP_BED_PIN 14 // ANALOG NUMBERING
#ifdef ULTRA_LCD