Posted on May 17, 2011 at 13:16I have two issues with the JoystickMouse demo, w.r.t ''Host Suspend''. 1) The new version 3.0.1 of this project does not seem to be able to resume at all from host suspend using the Key button. I've tried it on the sam...
Posted on May 17, 2011 at 13:14There are some well known issues with the STM32 and I2C. Check out the errata (doc # 14732), section 2.9.1. Also check out this post: http://www.st.com/mcu/forums-cat-7652-23.html - Matt
Posted on May 17, 2011 at 09:52So I figured it out. I seems that you must reset the counter _before_ you clear the OC1 flag. So change your ISR to be: void TIM1_IRQHandler(void) { /* Reset TIM1 Counter*/ TIM_CounterCmd(TIM1, TIM_CLEAR); /* clear Out...
Posted on May 17, 2011 at 09:52I too am seeing the same issue with the ''TIM example 2'' sample. Note that I am using the new version 2 of the firmware library. A couple of notes: - The timer rate in the sample is too fast to see the LED...try the ...