if i was running at 32Khz clock
lets us think in C55x one instruction takes 1MC,then for 1sec we can run 32000 instructions
so if i want a delay of one second can i write?
for(i=0;i<32000;i++)
{
asm("NOP");
}
how to view whether i am calculating right or not how to view how many seconds does my instruction is taking on "Code Compser IDE"
for example in keil at bottom we can view the time elapsed through the simulator
does codecomposer has the facility to view the MC executed between two break points ?
is my delay calculation above correct ? how many machine cycles does at C55x does take to execute a NOP?