Merge pull request #7256 from thinkyhead/bf_cleanup_july_6

Assign -1 to LCD_PINS_D4-7 if not defined
This commit is contained in:
Scott Lahteine
2017-07-07 03:22:47 -05:00
committed by GitHub
4 changed files with 13 additions and 12 deletions

View File

@@ -472,6 +472,19 @@
#define Z_MIN_PIN -1
#endif
#ifndef LCD_PINS_D4
#define LCD_PINS_D4 -1
#endif
#ifndef LCD_PINS_D5
#define LCD_PINS_D5 -1
#endif
#ifndef LCD_PINS_D6
#define LCD_PINS_D6 -1
#endif
#ifndef LCD_PINS_D7
#define LCD_PINS_D7 -1
#endif
//
// Dual X-carriage, Dual Y, Dual Z support
//