You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bsp/m5stack_core_s3/API.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -243,13 +243,17 @@ bsp_spiffs_unmount();
243
243
244
244
### SD Card Initialization / Deinitialization
245
245
246
-
The BSP offers a flexible API for working with SD cards. In addition to the default mount and unmount functions, you can also use a configuration structure or access preconfigured `host` and `slot` structures.
The SD Card is mounted during the bsp_display_start() process and occurs during the bsp_display_mount() function if the SDCARD capability is set using BSP_CAPS_SDCARD macro. Do not use the the default mount API "bsp_sdcard_mount()"
249
+
The BSP offers a flexible API for working with SD cards. File operations and unmount functions remain unchanged.
250
+
You can also use a configuration structure or access preconfigured `host` and `slot` structures.
247
251
248
252
Mount with Default Configuration
249
253
250
254
```
251
255
/* Mount microSD card to the virtual file system */
252
-
bsp_sdcard_mount();
256
+
** Mounting occurs automatically during bsp_display_start() process **
0 commit comments