Dev2 - "SD" menu does not appear.

Hello,
SD cards are not detected by the screen and I don't have the print menu
I am using a REPRAPDISCOUNT controller with a MKS RUMBA32 board
All other menus are working:
= MAIN MENU =
Back
Controls
Information
Configuration
Debug

The screen is not the cause, I tested on 2 different screens that work on a RUMBA8
The pin « #define ORIG_SDCARDDETECT PB0 » is right
I tested "SDCARDDETECTINVERTED 1" without success
I tested with the "Configuration_io.h and" Configuration.h "files from the" Deltatower RUMBA32 " example supplied with the firmware. It did not work
I also tested on a RUMBA32 Aus3D board, it didn't work either. I have the others menus but not SD card.

Any idea where my problem comes from?

-- -- -- --

#define FEATURE_CONTROLLER CONTROLLER_REPRAPDISCOUNT_GLCD
// Use more memory to speedup display updates
#define DISPLAY_FULL_BUFFER 1
// Direction 1 or -1
#define ENCODER_DIRECTION -1
// Encoder speed 0 = fastest, 1 or 2 = slowest - set so 1 click is one menu move
// Default is 2 if not set by controller. Us eonly to fix wrong setting
#define ENCODER_SPEED 2


#ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
#define SDSUPPORT 1
#undef SDCARDDETECT
#define SDCARDDETECT ORIG_SDCARDDETECT
#define SDCARDDETECTINVERTED 0

#define SD_MENU_SHOW_HIDDEN_FILES 0
#define SD_MENU_CACHE_SCROLL_ENTRIES 0   // Cache filenames while scrolling for better performance/infinite scroll
#define SD_SPI_SPEED_MHZ 4               // SD Card HW-SPI Speed in MHz. SD Card "High Speed" mode is 50Mhz, but you may be
                                         // limited to less based on your processor.  

Comments

  • Nothing wrong on your side. Selecting controller did not set SDSUPPORT so it was set to 0 and hence no sd card menu. Have fixed it in latest commit.
  • Thank you for your quick work
Sign In or Register to comment.