Posted on August 20, 2015 at 09:26
Hello
I am currently working on STM32F3 Discovery Board. I wrote a basic program in C to see if it works at 72 MHz which is about 14 ns in time. Hopefully it worked at this frequency, but when I want to togg...
Posted on August 20, 2015 at 13:14Yeah. Thanks for the answer. I try to write the code in asm. Like you said using libraries causes more cycles. When I use GPIOx->ODR ^= GPIO_Pin_Number ; instead of GPIO_Toggle(), speed greatly increases. Since I wi...