Skip to content

Commit

Permalink
Enable SD Card on RepRap Display and RADDS (#12446)
Browse files Browse the repository at this point in the history
* Enable SD Card on RepRap Display and RADDS

Define the necessary pins in `pins_RADDS.h` (copied from the `RADDS_DISPLAY` section) for the use of the SD card slot on RRD.
  • Loading branch information
Ph0non authored and thinkyhead committed Nov 17, 2018
1 parent 56a94c2 commit 984c4ba
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Marlin/src/pins/pins_RADDS.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@
//
// Misc. Functions
//
#define SDSS 4
#define SD_DETECT_PIN 14
#define PS_ON_PIN 40 // SERVO3_PIN

Expand Down Expand Up @@ -227,7 +226,6 @@

#define BTN_BACK 71

#undef SDSS
#define SDSS 10
#define SD_DETECT_PIN 14

Expand All @@ -246,6 +244,9 @@
#define BTN_EN2 52
#define BTN_ENC 48

#define SDSS 10
#define SD_DETECT_PIN 14

#elif ENABLED(SSD1306_OLED_I2C_CONTROLLER)

#define BTN_EN1 50
Expand All @@ -268,3 +269,7 @@
#endif // SPARK_FULL_GRAPHICS

#endif // ULTRA_LCD

#ifndef SDSS
#define SDSS 4
#endif

0 comments on commit 984c4ba

Please sign in to comment.