Posted on January 21, 2016 at 15:38
Can`t get the TIM12 to work in slave mode from TIM13 as master.
/* TIM13 clock is 1us */
TIM13->CNT = 0;
TIM13->PSC = ( TimerBusClock / 1000000U ) - 1U;
TIM13->ARR = 0xFFFFU;
TIM13->CCR1 = 0xFFFFU;
...
Posted on January 22, 2015 at 09:46
Can`t start the STM32F407VG chip in bootloader mode via USB. On the Discovery board all works fine if i set the boot0 and boot1 pins to boot from system memory. The device is enumerated in Windows as STM Devic...
Posted on January 22, 2016 at 08:50Thank You for fast and helpful answer. I was stuck trying to find description in chapters about timers synchronization, and it newer crossed my mind to look in output/compare mode. Now the timers are working.