2015-07-08 04:50 AM
Does anyone know of a good delay function I could use with my STM32F4. I need delay in miliseconds and microseconds.
#nano-delay() #ns-delay2015-12-09 10:03 PM
Hi,
To clarify, SystemCoreClock for STM32F4Discovery is 168Mhz.ticks = (SystemCoreClock) / 1000000000;.168= 168000000/1000000000.This doesn't work. Tick value below 76 will cause MCU to fault.Is this possible? 1= 168000000/168000000. I tried it and the MCU fails.What the lowest value can we use for tick?Thank you,Kyu