This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

MCU Performance of Cortex M4

Hi,
I'm developing the software based on a Cortex M4 MCU, and currently I need to implement a audio processing feature. In this case, I need to evaluate the MCU performance of the current software and the software of the audio processing feature section as well, in order to check if the MCU can support this new feature.

The debugger I am using is SEGGER Jlink. and the compiler I am using is MDK-Essential Edition. Is there any way to do that(evaluate the MCU performance such as CPU running percentage)?

Parents
  • All of ST's offerings support the DWT_CYCCNT and this can be used to counter cycles consumed by functions/algorithms.

    In terms of percentage, run the task under an interrupt, have an idle loop with WFI, quantify cycles charged to the task on a second-to-second basis.

Reply
  • All of ST's offerings support the DWT_CYCCNT and this can be used to counter cycles consumed by functions/algorithms.

    In terms of percentage, run the task under an interrupt, have an idle loop with WFI, quantify cycles charged to the task on a second-to-second basis.

Children
No data