User Activity

Posted on April 19, 2016 at 15:18Hi, I´m using TIM3(output compare mode) in stm32f072 to generate waveform via GPIO. My function principle is: - timer initializing - timer is still running, only is enabled TIM_IT_CC3 a output TIM_CCER_CC3E (BUS_Set_...
Posted on March 22, 2016 at 13:35Hi, I have board with two mcu (stm32f072 and stm32f031). I would like to flash f031 by f072 via UART to easier support and only one firmware. Is somewhere example?
Posted on March 14, 2016 at 15:48Hello there, I´m testing STM32F7 Discovery board, is somewhere demonstration example for Eclipse (openstm) or only for IAR?  
Posted on November 04, 2015 at 15:16Hi all, I´m using timer in Input Capture mode to measure interval between pulses. Actual solution actualTime = TIM3->CCR1; if(actualTime > lastTime) delay = actualTime - lastTime; else delay = 0xffff - lastTime + ...
Posted on April 24, 2015 at 15:02Hi, I´m trying connect my stm32f303 with Linux application by using USB CDC (communication device class). I would like transmit data packet to PC and receive it from virtual serial port (VSP). Do you have any example...