2024-09-17 07:18 AM
Hi all,
We are currently using the stm32h5-hal-library in our project. Our preference is to use the LL drivers rather than the HAL and for the Octospi, we only see a HAL drive for it (stm32h5xx_hal_xspi.c). Is there a LL driver equivalent for this? I have also tried generating the code with STM32CubeIDE and didn't see an option to switch to the LL driver as I normally would for other peripherals
Thanks in advance.
Solved! Go to Solution.
2024-09-17 07:38 AM
Hello @HuyDang and welcome to the community.
Unfortunately, there is no LL driver for XSPI.
All peripherals supporting LL have a driver with a file name having ll in the middle: stm32h5xx_ll_(name).c:
Look at the driver folder:
there is no stm32h5xx_ll_xspi.c file there.
2024-09-17 07:38 AM
Hello @HuyDang and welcome to the community.
Unfortunately, there is no LL driver for XSPI.
All peripherals supporting LL have a driver with a file name having ll in the middle: stm32h5xx_ll_(name).c:
Look at the driver folder:
there is no stm32h5xx_ll_xspi.c file there.
2024-09-17 07:53 AM
thanks for the quick response. I figured that's the case but just want to confirm with you guys.