diff options
author | Kliment Yanev <kliment.yanev@gmail.com> | 2011-09-03 18:51:27 +0200 |
---|---|---|
committer | Kliment Yanev <kliment.yanev@gmail.com> | 2011-09-03 18:51:27 +0200 |
commit | 55606f1bdc264a7b4b6b5e3f83867069d9538396 (patch) | |
tree | 0af66f1ada9f54dc9672ac354de86025126259ef /Sprinter | |
parent | 6308360ef8738c2af78c6ee5e206da46425b79f1 (diff) |
Fix missing newline in pins.h that prevents max6675 support from working
Diffstat (limited to 'Sprinter')
-rw-r--r-- | Sprinter/pins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Sprinter/pins.h b/Sprinter/pins.h index 0d861cc..3cc92dc 100644 --- a/Sprinter/pins.h +++ b/Sprinter/pins.h @@ -436,7 +436,8 @@ // SPI for Max6675 Thermocouple #ifndef SDSUPPORT -// these pins are defined in the SD library if building with SD support #define SCK_PIN 52 +// these pins are defined in the SD library if building with SD support + #define SCK_PIN 52 #define MISO_PIN 50 #define MOSI_PIN 51 #define MAX6675_SS 53 |