Tool/software:
Dear Team,
I want to calculate program execution time to define the state machine cycles for our project.
I want to know how to calculate program execution time in CCS
SDK - mcu_plus_sdk_am263x_09_02_00_56
lets take a example:
void initializeStringArray() {
char stringArray[10][100];
char buff[100] = { 0 };
// Initialize the string array
for (int i = 0; i < 10; ++i) {
for (int j = 0; j < 100; j++) {
stringArray[i][j] = j;
}
stringArray[i][99] = '\0';
}
we have to calculatre the time taken to execute the above code.