Load balance some tests

This commit is contained in:
Scott Lahteine
2020-03-29 18:12:06 -05:00
parent 223aa5cc4e
commit 9b886c2ad4
4 changed files with 50 additions and 41 deletions

View File

@ -72,6 +72,10 @@
#define Z_MIN_PROBE_PIN 30
#endif
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 5
#endif
//
// Steppers
//
@ -153,6 +157,13 @@
#define SPINDLE_LASER_ENA_PIN 31 // Pullup!
#define SPINDLE_DIR_PIN 32
//
// SPI for Max6675 or Max31855 Thermocouple
//
#ifndef MAX6675_SS_PIN
#define MAX6675_SS_PIN 32 // SPINDLE_DIR_PIN / STAT_LED_BLUE_PIN
#endif
//
// M7/M8/M9 - Coolant Control
//

View File

@ -169,11 +169,11 @@
#define TEMP_BED_PIN 14 // Analog Input
#endif
//
// SPI for Max6675 or Max31855 Thermocouple
#if DISABLED(SDSUPPORT)
#define MAX6675_SS_PIN 66 // Don't use 53 if using Display/SD card
#else
#define MAX6675_SS_PIN 66 // Don't use 49 (SD_DETECT_PIN)
//
#ifndef MAX6675_SS_PIN
#define MAX6675_SS_PIN 66 // Don't use 53 if using Display/SD card (SDSS) or 49 (SD_DETECT_PIN)
#endif
//