This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/TMS320F28335: cssv4

Part Number: TMS320F28335
Other Parts Discussed in Thread: CONTROLSUITE, C2000WARE

Tool/software: Code Composer Studio

IN F28335X CONTROl CARD IN OUR LAB IS RUNNING 20MHZ TO Achieve THE INTERNAL FREQUENCY OF 100MHZ , I MULTIPLY BY 10,AND DIVIDE BY 2.SO FINALLY I GET AS 100MHZ BUT I WANT time delay(//100 milisecons) // so how to calculate it .

plz reply me in details.

  • Are you saying to want to cause a 100ms delay? Assuming you are using C2000Ware (or controlSUITE) you could use the DELAY_US() macro in

    \device_support\f2833x\common\include\DSP2833x_Examples.h

    You'll want to make sure that you use the value of CPU_RATE that corresponds to 100MHz though (default is 150MHz). The macro is in terms of microseconds, so for 100ms you'll need to pass it 100000.

    Or are you trying to create the delay in some other way?

    Whitney