How to add sd card to lvgl zephyr project for stm32f746g_disco?
I have an existing project on an STM32F746g_disco board. The project uses lvgl under zephyr rtos.
When I build and flash the zephyr/subsys/fs/fs_sample for this board, The terminal does read the sd card and return a listing of the root contents.
I tried to apply the devicetree overlay, kconfig, and code to my lvgl based project, but it now shows an error of the mount point is unknown.
I did more digging and with the help of claude came up with these changes.
Error:
1. At one point I could get it to compile but the error reported was that the mount point didn't exist.
2. With this code I have a " undefined reference to `__device_dts_ord_208'" error, which seems to be associated wih the ".rodata.sdmmc_config_" file.
Questions:
Is this the correct approach to adding an sdcard to an lvgl project in zephyr?
