Why it always takes 12 clock cycle while using the STLINK to trace single instruction's execution time?(about dual-issue, St-link and Cortex-M7 pipeline)
Posted on August 22, 2017 at 12:25The device is STM32F746NG-DISCO, and I measure the execution time of single instruction by this ways:int a=0; int b=255;while(b--) { a++; }make breakpoint and watch the value of States. And by this, I found that for...