Posted on May 17, 2011 at 13:24Plus you were doing the pin remap first and then enabling the clock to AFIO module, shouldn't enabling the clock be the first one to appear?
Posted on May 17, 2011 at 13:24What 'smart' said is right, you don't need to re-initialize the output channel... this is how I would do it. Code:void InitTheWholeTimer() { //Enable clocks to the desired modules { RCC_APB1PeriphClockCmd(RCC_APB1Pe...
Posted on May 17, 2011 at 13:24WWDG - You can simply disable this module WWDG_Enable(DISABLE), and enable it back after waking up Wake on interrupt - If you have the interrupts enabled and the NVIC initialized for the interrupt channel, you should b...
Posted on May 17, 2011 at 13:24Hi Clive, That was neat. I tried the backup domain and now it works like a charm. Thank you for your time.. by the way.. I loved the constant (deadbeef) regards mohith
Posted on May 17, 2011 at 13:24that being said, how about using them in the same application but not concurrently? Say I start with CAN and when I am done with it, simply disable the clock to the CAN module and start the USB initialization. I tried ...