STM32 Timer multiple compare values with DMA

Guest #6612757
Rate this post
useful
not useful
Hello to all STM32 experts out there,

is it possible to have multiple compare values for a running timer 
together with DMA?

To be more precise: I am having an array of ten compare values (which do 
not follow any pattern), e.g.
1
uint16_t compare_vals = { 100, 160, 200, 320, ... };
And now I want to toggle a GPIO pin whenever the running timer reaches 
the next value.
Of course I could just set the new compare value within the ISR of the 
previous one, but it would be pretty neat if this can be done with DMA. 
In way that the the DMA automatically takes the next value from the 
array and sets it as compare value.

Is this possible or has anybody done something like this?

Best regards,
energetic

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now