Tool/software: Code Composer Studio
Hi,
Which is the best way to find function execution time in CC1310.
I am working with TI-RTOS and CCS.
I need to calculate the execution time for an RF transmit function, it contains RF_open, a command for changing frequency, a command for transmitting a packet, RF_close, RF_yield.
Actually, I need to evaluate how much time does the radio core is ON for transmitting my packet.
Power down policy is enabled in my project. My understanding is that Radio core wakes up when I have posted a command in cmd queue and shut down after I called RF_yield function.
Is it correct?