-
Hello, I have custom board with stm32f205 and connected sd card via SDIO interface.
My prj.conf looks like:
But build is failing with this error and warning.
|
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 3 replies
-
hi @xmacur06
|
Beta Was this translation helpful? Give feedback.
-
note that DMA2 of the stm32f205 has a channel/request for SDIO transfer if needed |
Beta Was this translation helpful? Give feedback.
-
Hello and thank you for responce. So in my Kconfig.defconfig I added:
So I think that And also default device tree st/f2/stm32f2.dtsi should be extened by sdmmc/sdio node. |
Beta Was this translation helpful? Give feedback.
-
I confirm |
Beta Was this translation helpful? Give feedback.
-
Maybe there is some misconception. I think this is general problem for STM32F2X series with usage of SDIO driver. SDIO always uses HAL driver which calls HAL_DMA functions. But without fix, LL_DMA is build instead of HAL_DMA and linker script is never successful. So it is not bug just for my custom board but for all of them with F2 + SDIO. |
Beta Was this translation helpful? Give feedback.
-
Thank you for response Erwan. |
Beta Was this translation helpful? Give feedback.
So it is not a bug but a feature not yet supported on STM32F2 series, you can raise an issue for this.
Alternatively you can also work this out and submit a contribution, which would be welcome.