0% found this document useful (0 votes)
36 views5 pages

Procedure To Generate Real Time Signal

The document provides a 4-step procedure to generate a real time signal on a DSK6713 board using Code Composer Studio: 1. Create a project with the correct target, connection, linker command file, and runtime support library. 2. Add the required source file and library files (BSL and CSL) to the project. 3. Set the build properties by adding the include path and predefined symbol. 4. Build, debug, and run the project by connecting the board via JTAG emulator and resuming program execution.

Uploaded by

Siladittya Manna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views5 pages

Procedure To Generate Real Time Signal

The document provides a 4-step procedure to generate a real time signal on a DSK6713 board using Code Composer Studio: 1. Create a project with the correct target, connection, linker command file, and runtime support library. 2. Add the required source file and library files (BSL and CSL) to the project. 3. Set the build properties by adding the include path and predefined symbol. 4. Build, debug, and run the project by connecting the board via JTAG emulator and resuming program execution.

Uploaded by

Siladittya Manna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Procedure to generate real time signal :

1:Create a Project:

Target : -------------- | DSK6713


Connection : Spectrum Digital DSK-EVM-eZdsp onboard USB Emulator
Project name: any name

Linker Command File: C:\CCStudio_V3.1\tutorial\dsk6713\hello1\hello.cmd


Run Time Support Library:C:\CCStudio_v3.1\C6000\cgtools\lib\rts6700.lib

Then select empty project, Then click on finish .

2:Create a source file

File->new->source file or right click on project-> add files->select the required file

3:Adding library files

Go to projectadd files as shown in below:


Then you have to add bsl and csl library files. These files you will get in below mentioned paths.

 BSL(Board support library file)

Path :C:\CCStudio_v3.1\C6000\dsk6713\lib\dsk6713bsl.lib

 CSL(Chip support library file )

Path: C:\CCStudio_v3.1\C6000\csl\lib\csl6713.lib

You can see these files added to your project as shown below:

4: Setting Build properties

 Go to projectproperties , under Build C6000 Compilerinclude options now click on add


as shown in below:
 Then click on file systemand go to this path C:\CCStudio_v3.1\C6000\csl\include, then ok.

 Now again under same build go to Build C6000 CompilerPredefined symbols , Then again
click on add(On top right side Plus indication in green color symbol ). Then type as ”CHIP_6713”
then apply ok as shown in below
3:Build the project
Go to ProjectBuild Project as shown in Fig 11below.

If your code doesn’t have any errors and warnings, a message will be printed in the console
window that “**** Build Finished ****”

Problems window display errors or warnings, if any.


4. DEBUG
After successful Build, connect the kit with the system using the JTAG emulator and power the
kit.
Click the Debug as shown in the below figure.

It will redirect to the Debug perspective automatically.

5:Running the project

Wait until the program loaded to the hardware automatically.


Now you can run the code, by selecting Run->Resume.

You might also like