cancel
Showing results for 
Search instead for 
Did you mean: 

STM32L412 GPIO toggle from hardware without using dedicated timer as AF on that pin

Linas L
Senior II

Hello,

I run into problem for selecting TIM2 as my pwm output. As it turns out, it is only output capable. But I need to get processor independent 3kHz 50:50 PWM signal with no AF functional PWM.

Any simple idea how can I toggle with 50% 3kHz duty cycle this GPIO? (PA15 on STM32L412C8)

I Am thinking of using DMA, just have no idea how to do that, since I can't use ODR register,I have multiple pins that should not change, and with BRR BSRR, well, it is two address, so what ? Do ping pong DMA with single transfer and circular buffer ?

Any ideas are welcome :)

1 ACCEPTED SOLUTION

Accepted Solutions

Hi,

I found the problem, I was looking at LPTIM2 instead of TIM2

No problems in this case :) Thank you all !

View solution in original post

3 REPLIES 3
Uwe Bonnes
Principal III

PA15 is TIM2_CH1and can do PWM . All other solutions wll give you at least Jitteror even missing cycles.

Piranha
Chief II

First, like Uwe already said...

Second, read what a BSRR register is. At least read it's name!

Hi,

I found the problem, I was looking at LPTIM2 instead of TIM2

No problems in this case :) Thank you all !