Posted on February 15, 2012 at 13:50
Hi I have trying to use TIM10_PWMOutput examples from STM32F2xx Standard Peripherals Firmware Library. It works very well but if I try to using the other output pin than GPIO_Pin_6 the output is quit.
The...
Posted on February 17, 2012 at 07:00Hi Sebastian, if you want to use timer 8 the you have to use Port C. Channel 1 is connected to port C pin 6, channel 2-> PC7, channel 3-> PC8 and channel 4-> PC9.
Posted on February 16, 2012 at 11:35Ok, this was my mistake. I found Document Doc ID 15818 Rev 8 and there is table 7 where is describe all Ports and Pins. So solution is to change Port and Pin according to the timer. Example: timer 8-> port C, pi...
Posted on February 16, 2012 at 11:24Hi Sebastian, I had the same problem. Solution is that you should be also change to PORT and PIN. You can find right port and pins the next Document ID 15818 Rev 8 table 7. If you want to use timer 8, using port ...
Posted on February 16, 2012 at 08:10Hi Tomas, have you tried to using a different pin? I tried your's code and it works, but when I changed the Pin_8 to Pin_7 it doesn't work. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; -> GPIO_InitStructure.GPIO_Pi...