cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with PWM TIM3 on STM32F3Discovery board

andreaspiezia9
Associate III
Posted on January 17, 2014 at 18:31

Hi all,

I'd like to see a PWM with my oscilloscope, but I see nothing and I can't understand why. Can you help me? Thanks in advantage <I>

int main(void)
{
TIM_Config();
GPIO_Configuration();
/* Infinite loop */
while (1)
{
}
}
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
/* GPIOB clock enable */
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource6, GPIO_AF_2); // TIM3 Channel1 PA6 AF2
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; // Or UP for open-collector sources
GPIO_Init(GPIOD, &GPIO_InitStructure);
}
/********************************/
static void TIM_Config(void)
{
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
TIM_OCInitTypeDef TIM_OCInitStructure;
__IO uint16_t CCR1_Val = 40961;
uint16_t PrescalerValue = 0;
/* TIM3 clock enable */
RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM3, ENABLE);
/* ----------------------------------------------------------------------- */ 
TIM_DeInit(TIM3);
/* Compute the prescaler value we want TIM3 clk @8Mhz => Presc = 8*/
PrescalerValue = (uint16_t) ((SystemCoreClock) / 8000000) - 1;
/* Time base configuration */
TIM_TimeBaseStructure.TIM_Period = 100;
TIM_TimeBaseStructure.TIM_Prescaler = 0;
TIM_TimeBaseStructure.TIM_ClockDivision = 0;
TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
TIM_TimeBaseInit(TIM3, &TIM_TimeBaseStructure);
/* Prescaler configuration */
TIM_PrescalerConfig(TIM3, PrescalerValue, TIM_PSCReloadMode_Immediate);
/* Output Compare Timing Mode configuration: Channel1 */
TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_Timing;
TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
TIM_OCInitStructure.TIM_Pulse = CCR1_Val;
TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
TIM_OC1Init(TIM3, &TIM_OCInitStructure);
TIM_OC1PreloadConfig(TIM3, TIM_OCPreload_Disable);
/* TIM3 enable counter */
TIM_Cmd(TIM3, ENABLE);
}

</I>
15 REPLIES 15
Posted on January 18, 2014 at 19:51

Have you an example code for TIM stm32f3?

I write and post a lot of things, when I need them I Google for them. I could write some additional ones, but don't have a scope with me.

https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Discovery/Flat.aspx?RootFolder=https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Discovery/STM32F3%20Timer3%20and%20Timer4%20as%20PWM&FolderCTID=0x01200200770978C69A1141439FE559EB459D75800084C20D8867EAD444A5987D47BE638E0F&currentviews=1...

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
andreaspiezia9
Associate III
Posted on January 18, 2014 at 20:06

Probably I going to understand the problem, just a clarification if possible:

GPIO_PinAFConfig(GPIOA, GPIO_PinSource11, GPIO_AF_10) is referring to PA11 on board?

Posted on January 19, 2014 at 00:25

PA11 TIM4_CH1

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
andreaspiezia9
Associate III
Posted on January 19, 2014 at 21:46

Clive with your code my oscilloscope see: PA6 and PA7 (TIM3) 1Khz, PA11 and PA12 nothing. 

Posted on January 20, 2014 at 00:55

Did you make SB21 and SB22?

PA11/PA12 are normally assigned to the USB DP/DM function.
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
andreaspiezia9
Associate III
Posted on January 20, 2014 at 11:22

Thanks Clive.