How to calculate the worst and the mean execution time of an assembly instruction in the STM32F103?
I have write two simple code examples.First: LDR R0, =0x00000000 LDR R1, =0x0000FFFF LDR R2, =GPIOA_ODR turnON: STR R1, [R2] turnOFF: STR R0, [R2] delayDone: B turnON Second: LDR R0, =0x00000000 LDR R1, =0x0000FFFF LDR R2, =GP...