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
Hello,
I tried to port the library to a stm32u5 and I haven't managed to get the library to control the LEDs at the moment.
I prepared a branch: stm32u5 (WIP)
Timer 2, channel 4
GPDMA channel 0
I have no signal on the output. DMA interrupts are occurring as expected.
Anyone have any clues as to what's wrong or missing for this family?
Regards
The text was updated successfully, but these errors were encountered:
I didn't check the details, would be good I tried porting to U5 too, but GPDMA IP accepts number of "BYTES" to transmit, and not number of "elements".
In GPDMA, if you have word data size (4 bytes) and you want to transfer 2 words, your length is set to 8 -> 8 is number of bytes.
If non-GPDMA STM32 products, if you have a word data size (4 bytes) and you want to transfer 2 words, your length is set to 2.
Hello,
I tried to port the library to a stm32u5 and I haven't managed to get the library to control the LEDs at the moment.
I prepared a branch: stm32u5 (WIP)
I have no signal on the output. DMA interrupts are occurring as expected.
Anyone have any clues as to what's wrong or missing for this family?
Regards
The text was updated successfully, but these errors were encountered: