Advertisement
pleasedontcode

"SD Initialization" rev_02

Mar 31st, 2024
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: "SD Initialization"
  13.     - Source Code compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-03-31 23:17:42
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Configure WiFi and timezone settings with web page */
  21.     /* available via both AP and STA */
  22. /****** END SYSTEM REQUIREMENTS *****/
  23.  
  24. /****** DEFINITION OF LIBRARIES *****/
  25. #include <SPI.h>
  26. #include <SdFat.h>    // https://github.com/greiman/SdFat
  27.  
  28. /****** FUNCTION PROTOTYPES *****/
  29. void setup(void);
  30. void loop(void);
  31.  
  32. /***** DEFINITION OF SPI PINS *****/
  33. const uint8_t sdcard_SDCardModule_SPI_PIN_MOSI_D23   = 23;
  34. const uint8_t sdcard_SDCardModule_SPI_PIN_MISO_D19   = 19;
  35. const uint8_t sdcard_SDCardModule_SPI_PIN_SCLK_D18   = 18;
  36. const uint8_t sdcard_SDCardModule_SPI_PIN_CS_D5      = 5;
  37.  
  38. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  39. SdFat sd;
  40.  
  41. void setup(void)
  42. {
  43.   // put your setup code here, to run once:
  44.  
  45.   // Set CS pin as OUTPUT
  46.   pinMode(sdcard_SDCardModule_SPI_PIN_CS_D5, OUTPUT);
  47.  
  48.   // Start the SPI library
  49.   SPI.begin();
  50.  
  51.   // Initialize the SdFat library object
  52.   if (!sd.begin(sdcard_SDCardModule_SPI_PIN_CS_D5, SD_SCK_MHZ(4))) {
  53.     Serial.println("SD card initialization failed!");
  54.     return;
  55.   }
  56.  
  57.   Serial.println("SD card initialized.");
  58.  
  59.   // Configure WiFi and timezone settings with web page
  60.   // available via both AP and STA
  61.  
  62.   // Add your code here to configure WiFi and timezone settings
  63.  
  64. }
  65.  
  66. void loop(void)
  67. {
  68.   // put your main code here, to run repeatedly:
  69.  
  70.   // Add your code here for the main functionality of the sketch
  71.  
  72. }
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement