No SD icon on Full Graphic Smart Controller and no SD available:-( October 23, 2020 09:18AM |
Registered: 11 years ago Posts: 11 |
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 23, 2020 11:07AM |
Admin Registered: 13 years ago Posts: 7,102 |
// 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 SD_DETECT_PIN 66 // Don't use 49 (SD_DETECT_PIN)
#endif
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 23, 2020 02:20PM |
Registered: 11 years ago Posts: 11 |
// // LCD Display input pins // #if ENABLED(NEWPANEL) #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) #define BEEPER_PIN 37 #if ENABLED(CR10_STOCKDISPLAY) #define BTN_EN1 17 #define BTN_EN2 23 #else #define BTN_EN1 31 #define BTN_EN2 33 #endif #define BTN_ENC 35 #ifndef SD_DETECT_PIN #define SD_DETECT_PIN 66 //edited by GAETANO #endif #ifndef KILL_PIN #define KILL_PIN 41 #endif
////////////////////////// // LCDs and Controllers // ////////////////////////// #if HAS_SPI_LCD // // LCD Display output pins // #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD) #define LCD_PINS_RS 49 // CS chip select /SS chip slave select #define LCD_PINS_ENABLE 51 // SID (MOSI) #define LCD_PINS_D4 52 // SCK (CLK) clock #elif BOTH(NEWPANEL, PANEL_ONE) #define LCD_PINS_RS 40 #define LCD_PINS_ENABLE 42 #define LCD_PINS_D4 65 #define LCD_PINS_D5 66 #define LCD_PINS_D6 44 #define LCD_PINS_D7 64 #else
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 23, 2020 03:37PM |
Admin Registered: 11 years ago Posts: 3,096 |
Quote
gaetans
First of all thanks.
I don't understand very well.
In pins_RAMPS.h I have:
I moved 49 to 66:
// // LCD Display input pins // #if ENABLED(NEWPANEL) #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) #define BEEPER_PIN 37 #if ENABLED(CR10_STOCKDISPLAY) #define BTN_EN1 17 #define BTN_EN2 23 #else #define BTN_EN1 31 #define BTN_EN2 33 #endif #define BTN_ENC 35 #ifndef SD_DETECT_PIN #define SD_DETECT_PIN 66 //edited by GAETANO #endif #ifndef KILL_PIN #define KILL_PIN 41 #endif
But I also find this:
////////////////////////// // LCDs and Controllers // ////////////////////////// #if HAS_SPI_LCD // // LCD Display output pins // #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD) #define LCD_PINS_RS 49 // CS chip select /SS chip slave select #define LCD_PINS_ENABLE 51 // SID (MOSI) #define LCD_PINS_D4 52 // SCK (CLK) clock #elif BOTH(NEWPANEL, PANEL_ONE) #define LCD_PINS_RS 40 #define LCD_PINS_ENABLE 42 #define LCD_PINS_D4 65 #define LCD_PINS_D5 66 #define LCD_PINS_D6 44 #define LCD_PINS_D7 64 #else
Any hints?
I'm not that skilled (as it is quite clear ;-))
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 23, 2020 07:47PM |
Admin Registered: 13 years ago Posts: 7,102 |
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 24, 2020 03:08AM |
Registered: 11 years ago Posts: 11 |
Re: No SD icon on Full Graphic Smart Controller and no SD available:-( October 24, 2020 08:25AM |
Registered: 11 years ago Posts: 11 |