Fix SKR 1.4 Turbo SD_DETECT_PIN (#16955)

This commit is contained in:
InsanityAutomation 2020-02-25 04:17:08 -05:00 committed by GitHub
parent 3e685777a8
commit 6bfae5de6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,11 +150,6 @@
#define TEMP_1_PIN P0_23_A0 // A2 (T2) - (69) - TEMP_1_PIN
#define TEMP_BED_PIN P0_25_A2 // A0 (T0) - (67) - TEMP_BED_PIN
//
// Include common SKR pins
//
#include "pins_BTT_SKR_common.h"
//
// Software SPI pins for TMC2130 stepper drivers
//
@ -264,7 +259,10 @@
#define LCD_PINS_D4 P1_20
#define LCD_SDSS P0_16 // (16) J3-7 & AUX-4
#define SD_DETECT_PIN P1_31 // (49) (NOT 5V tolerant)
#if SD_CONNECTION_IS(LCD)
#define SD_DETECT_PIN P1_31 // (49) (NOT 5V tolerant)
#endif
#if ENABLED(FYSETC_MINI_12864)
#define DOGLCD_CS P1_18
@ -329,3 +327,8 @@
* P0_27 (57) (Open collector)
* P0_28 (58) (Open collector)
*/
//
// Include common SKR pins
//
#include "pins_BTT_SKR_common.h"