SlideShare ist ein Scribd-Unternehmen logo
1 von 34
Chapter 2 : Program
 Development Tools


  Digital Signal Controller
    TMS320F2812



Technology beyond the Dreams™   Copyright © 2006 Pantech Solutions Pvt
Code Composer Studio® IDE
                Menus or Icons                                       CPU
                                                          Help
 Project Manager:                                                    Window
 Source & object files
 File dependencies
 Compiler, Assembler
 & Linker build options

Full C/C++ & Assembly
Debugging:
C & ASM Source
Mixed mode
Disassembly (patch)
Set Break Points
Set probe Points



 Productive Editor:
 Structure Expansion     Status   Watch window    Graph
                          window                                   Memory window
                                                   window

Technology beyond the Dreams™                     Copyright © 2006 Pantech Solutions Pvt
Code Build lnk.cmd
          Compile
                  Composer Studio
                                SIM
                                            Probe In

                                                                     eZdsp™
                     Asm        Link        Debug
                                                                     EVM
                    DSP/BIOS
          Edit               DSP/BIOS Probe Out
                    Config                                           Third
                             Libraries Graphs
                    Tool                                             Party
                                       Profiling

                                                                     XDS
      •    Code Composer Studio includes:
            – Integrated Edit/Debug GUI                              DSP
            – Code Generation Tools                                  Board
            – DSP/BIOS
Technology beyond the Dreams™                     Copyright © 2006 Pantech Solutions Pvt
Code Composer Studio: IDE


                        •       Integrates: edit, code generation, and debug
                        •       Single-click access using buttons
                        •       Powerful graphing/profiling tools
                        •       Automated tasks using GEL scripts
                        •       Built-in access to BIOS functions
                        •       Support TI or 3rd party plug-ins




Technology beyond the Dreams™                                      Copyright © 2006 Pantech Solutions Pvt
The CCS Project
                                Project (.pjt) files contain:

                                •    Source files (by reference)
                                      – Source (C, assembly)
                                      – Libraries
                                      – DSP/BIOS configuration
                                      – Linker command files
                                •    Project settings:
                                      – Build Options (compiler and
                                         assembler)
                                      – Build configurations
                                      – DSP/BIOS
                                      – Linker


Technology beyond the Dreams™                       Copyright © 2006 Pantech Solutions Pvt
Build Options GUI - Compiler




                      •    GUI has 8 pages of categories for code generation
                           tools
                      •    Controls many aspects of the build process, such as:
                            – Optimization level
                            – Target device
                            – Compiler/assembly/link options
Technology beyond the Dreams™                      Copyright © 2006 Pantech Solutions Pvt
Build Options GUI - Linker


                                •   GUI has 2 categories for
                                    linking
                                •   Specifies various link options
                                •   “.Debug” indicates on
                                    subfolder level below project
                                    (.pjt) location




Technology beyond the Dreams™         Copyright © 2006 Pantech Solutions Pvt
Default Build Configurations
                                •   For new projects, CCS automatically
                                    creates two build configurations:
                                      – Debug (unoptimized)
                                      – Release           (optimized)
                                •   Use the drop-down menu to quickly select
                                    the build configuration


                                •     Add/Remove your own custom build
                                      configurations using Project
                                      Configurations
                                •     Edit a configuration:
                                       1. Set it active
                                       2. Modify build options
                                       3. Save project

Technology beyond the Dreams™                   Copyright © 2006 Pantech Solutions Pvt
Learning by doing - Step by Step
  Code Composer Studio - The Basics


     1. The Start-up - Window
     2. Create a F28x - project, based on C language
     3. Debug your program
     4. Watch your variables
     5. Perform a Single Step Debug
     6. Use Breakpoints
     7. What is a Probe Point for ?
     8. Other View Commands
     9. GEL - General Extension Language



Technology beyond the Dreams™                          Copyright © 2006 Pantech Solutions Pvt
1. The Startup - Window




              Project-
              tree
                                Working
                                Area




Technology beyond the Dreams™             Copyright © 2006 Pantech Solutions Pvt
2. Create a F28x - project
      •    Project ==> New
      give your project a name : “Lab1”, select a target and a suitable location of
      your hard disk:




     Note : The project file (“Lab1.pjt) is a plain ASCII-text file and stores all set-ups
            and options of the project. This is very useful for a version management.


Technology beyond the Dreams™                             Copyright © 2006 Pantech Solutions Pvt
•       Write a C-Source Code :
           File New Source File
                            unsigned int i=0,k=0;
                            void main (void)
                            {
                            while(1)
                            {
                                for (i=0;i<100;i++)
                                k=i*i;
                            }
                            }
             File Save as : “lab1.c”

Technology beyond the Dreams™                         Copyright © 2006 Pantech Solutions Pvt
Technology beyond the Dreams™   Copyright © 2006 Pantech Solutions Pvt
• Add your file to the project :
     Project  Add files to project
   – Add: “lab1.c”

• Compile your source code :
    Project  Compile File
   – active window will be compiled
   – in the event of syntax errors : modify your source code as needed

• Add the C-runtime-library to your project :
    Project  Build Options  Linker  Library Search Path :
       c:tic2000cgtoolslib
    Project  Build Options  Linker  Include Libraries :
       rts2800_ml.lib

• Add the stack- size of 0x400
    Project  Build Options  Linker  Stack Size : 0x400
Technology beyond the Dreams™                         Copyright © 2006 Pantech Solutions Pvt
Close the build-window by ‘OK’


Technology beyond the Dreams™              Copyright © 2006 Pantech Solutions Pvt
• Add the Linker - Command File to your project:
     Project  Add Files to Project  ..cmdEzDSP_RAM_lnk.cmd
 • Finally : Build the code ( compile / assemble / link ) :
     Project  Build




Technology beyond the Dreams™                    Copyright © 2006 Pantech Solutions Pvt
Placing Sections in Memory
                  Memory
                                           Sections
   0x00 0000     M0SARAM
                 (0x400)
                                        .ebss
   0x00 0400     M1SARAM
                 (0x400)
                                        .stack

   0x3D 8000      FLASH                 .cinit
                  (0x20000)

                                         .text




Technology beyond the Dreams™    Copyright © 2006 Pantech Solutions Pvt
Linking
                   
                     Memory description
                      Memory description
                    How to place s/w into h/w
                     How to place s/w into h/w




                                      name.cmd



                .obj            Linker                 .out



                                  .map

Technology beyond the Dreams™                     Copyright © 2006 Pantech Solutions Pvt
Linker Command File
              MEMORY
              {
                PAGE 0:           /* Program Space */
                    FLASH: org = 0x3D8000, len = 0x20000
                PAGE 1:           /* Data Space */
                    M0SARAM: org = 0x000000, len = 0x400
                    M1SARAM: org = 0x000400, len = 0x400
              }

              SECTIONS
              {
                    .text:       >   FLASH           PAGE 0
                    .ebss:       >   M0SARAM         PAGE 1
                    .cinit:      >   FLASH           PAGE 0
                    .stack:      >   M1SARAM         PAGE 1
              }


Technology beyond the Dreams™                              Copyright © 2006 Pantech Solutions Pvt
• Load the binary code into the DSP :
        File  Load Program  DebugLab1.out

        – Note: a new binary code can be downloaded automatically into the
          target. This is done by  Option  Customize  Program Load
          Options Load Program after Build. This setup will be stored for
          permanently.

    • Run the program until label “main”

         Debug  Go main.




Technology beyond the Dreams™                       Copyright © 2006 Pantech Solutions Pvt
yellow arrow :
                                       current PC




Technology beyond the Dreams™   Copyright © 2006 Pantech Solutions Pvt
3. Debug your code !
 • Perform a real time run :
      Debug  Run (F5)
     Note 1: the bottom left corner will be marked as : “DSP Running”.
     You’ll see no activity on the peripherals of the Adapter Board because our
     first example program does not use any of them !
     Note 2: the yellow arrow is no longer visible – that’s another sign of a real
     time run.
 • Stop the real time run :
      Debug  Halt
 • Reset the DSP :
     Debug  Reset CPU
     Debug  Restart
 • Run again to main :
      Debug Go Main



Technology beyond the Dreams™                           Copyright © 2006 Pantech Solutions Pvt
4. Watch your variables
    • Open the Watch Window :
        View  Watch Window

    • The variable ‘i’ is already visible inside the “Watch Locals”-window .

    • To see also the global ‘k’ we need to add this variable manually. This
      can be done inside window ‘Watch 1’. In the column ‘name’ we just
      enter ‘k’ and in the second line ‘i’.
       – Note : another convenient way is to mark the variables inside the
          source code with the right mouse button and then select “Add to
          watch window”

    • note : with the column ‘radix’ one can adjust the data format between
      decimal, hexadecimal, binary etc.

Technology beyond the Dreams™                          Copyright © 2006 Pantech Solutions Pvt
Watch your variables




                                Watch-
                                Window
Technology beyond the Dreams™            Copyright © 2006 Pantech Solutions Pvt
5. Perform a Single Step Debug
 • Perform a single step trough the program :
     Debug  Step Into ( or F8 )

 • Watch the current PC ( yellow arrow) and the numerical values of i and k in
   Watch Window while you single step through the code !

 • There are more debug - commands available, see next slide




Technology beyond the Dreams™                          Copyright © 2006 Pantech Solutions Pvt
Perform a Single Step Debug
                                Source Single Step


                                     Source Step Over

                                           Step Out

                                      Assembly Single Step


                                    Assembly Step Over
                                 Run to
            Halt       Run       cursor


Technology beyond the Dreams™                Copyright © 2006 Pantech Solutions Pvt
6. Adding a Breakpoint
 • Set a Breakpoint :
    – Place the Cursor in Lab1.c on line : k = i * i;
    – Click right mouse and select ‘Toggle Breakpoint’
    – the line is marked with a red dot ( = active breakpoint )
    Note : most Code Composer Studio Commands are also available through
       buttons or trough Command -Keys ( see manual, or help )
 • Reset the Program
     Debug  Reset CPU
     Debug  Restart
 • Perform a real time run
     Debug  Run ( or F5)
 • DSP stops when reaching an active breakpoint
 • Repeat ‘Run’ and watch your variables
 • Remove the breakpoint ( Toggle again) when you’re done.

Technology beyond the Dreams™                     Copyright © 2006 Pantech Solutions Pvt
Adding a Breakpoint
                                Toggle
                                Breakpoint


                                Remove all
                                Breakpoints


      Red dot :                               Yellow arrow :
      active                                  Current PC
      Breakpoint




Technology beyond the Dreams™                 Copyright © 2006 Pantech Solutions Pvt
7. Set a Probe Point
   • Causes an update of a particular window at a specific point in your program.

   • When a window is created it is updated at every breakpoint. However, you
     can change this so the window is updated only when the program reaches
     the connected Probe Point. When the window is updated, execution of the
     program is continued.

   • To set a Probe - Point :
      – Click right mouse on the line ‘k = i*i;’ in the program first.c
      – select : ‘Toggle Probe Point ‘ ( indicated by a blue dot )
      – select  Debug  Probe Points...
      – In the Probe Point Window click on the line ‘first.c line 13 -> no
         Connection’
      – in the ‘Connect to’ - selector select ‘Watch Window’
      – exit this dialog with the ‘Replace’ and ‘OK’ – Button
   • Run the program and verify that the watch window is updated continuously.
Technology beyond the Dreams™                         Copyright © 2006 Pantech Solutions Pvt
Set a Probe Point




Technology beyond the Dreams™      Copyright © 2006 Pantech Solutions Pvt
8. Other View Commands
    • The View menu includes more useful windows to monitor and control
      the DSP

    •  View  Registers  Core
    •  View  Registers  Status

        – click right mouse inside the new windows and select ‘Float in Main
          Window’

        – double click on line ‘ACC’ and modify the value inside the
          Accumulator ACC




Technology beyond the Dreams™                         Copyright © 2006 Pantech Solutions Pvt
• To view both the Assembler code and the C Source Code :

    • click right mouse inside “Lab1.c” and select “Mixed Mode”

    • The Assembler Instruction Code generated by the Compiler is added
      and printed in grey colour

    • Single Step ( ‘Assembly Step Into’ ) is now possible on instruction level
       – Perform :  Debug  Reset DSP
                       Debug  Restart
                       Debug  Go Main
                       Debug  Step Into (F8)
       – You’ll see two arrows , a yellow one on C-lines and a green one for
          assembler instruction-lines

Technology beyond the Dreams™                           Copyright © 2006 Pantech Solutions Pvt
8. View C and Disassembly


                                    Current
                                    C - line




                                          Current
                                          Instruction




Technology beyond the Dreams™   Copyright © 2006 Pantech Solutions Pvt
9. GEL - General Extension Language
     •   language similar to C
     •   lets you create functions to extend Code Composer's features
     •   to create GEL functions use the GEL grammar
     •   load GEL-files into Code Composer

     • With GEL, you can:
        – access actual/simulated target memory locations
        – add options to Code Composer’s GEL menu

     • GEL is useful for automated testing and user workspace adjustment .

     • GEL - files are ASCII with extension *.gel



Technology beyond the Dreams™                         Copyright © 2006 Pantech Solutions Pvt

Weitere ähnliche Inhalte

Was ist angesagt?

Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...
Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...
Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...Perforce
 
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Intel® Software
 
Python_for_Visual_Effects_and_Animation_Pipelines
Python_for_Visual_Effects_and_Animation_PipelinesPython_for_Visual_Effects_and_Animation_Pipelines
Python_for_Visual_Effects_and_Animation_PipelinesRussell Darling
 
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...Intel® Software
 
Droidcon ndk cpu_architecture_optimization
Droidcon ndk cpu_architecture_optimizationDroidcon ndk cpu_architecture_optimization
Droidcon ndk cpu_architecture_optimizationDroidcon Berlin
 
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intel
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intelDroidcon2013 ndk cpu_architecture_optimization_weggerle_intel
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intelDroidcon Berlin
 
The anatomy and philosophy of Android - Google I/O 2009
The anatomy and philosophy of Android - Google I/O 2009The anatomy and philosophy of Android - Google I/O 2009
The anatomy and philosophy of Android - Google I/O 2009Viswanath J
 
Android media framework overview
Android media framework overviewAndroid media framework overview
Android media framework overviewJerrin George
 
V Labs Product Presentation
V Labs  Product PresentationV Labs  Product Presentation
V Labs Product PresentationWil Huijben
 
Dalvik Vm &amp; Jit
Dalvik Vm &amp; JitDalvik Vm &amp; Jit
Dalvik Vm &amp; JitAnkit Somani
 
Eclipse Summit 2008 - Thales - SolFa
Eclipse Summit 2008 - Thales - SolFaEclipse Summit 2008 - Thales - SolFa
Eclipse Summit 2008 - Thales - SolFaBENOIT_LANGLOIS
 
Operating System Windows CE 7.0 and Processor ARM Advantages and Disadvantages
Operating System Windows CE 7.0 and Processor ARM Advantages and DisadvantagesOperating System Windows CE 7.0 and Processor ARM Advantages and Disadvantages
Operating System Windows CE 7.0 and Processor ARM Advantages and DisadvantagesFatih Özlü
 
Inside Android's Dalvik VM - NEJUG Nov 2011
Inside Android's Dalvik VM - NEJUG Nov 2011Inside Android's Dalvik VM - NEJUG Nov 2011
Inside Android's Dalvik VM - NEJUG Nov 2011Doug Hawkins
 
Build Community Android Distribution and Ensure the Quality
Build Community Android Distribution and Ensure the QualityBuild Community Android Distribution and Ensure the Quality
Build Community Android Distribution and Ensure the QualityNational Cheng Kung University
 
Alliance Successful Selenium Automation
Alliance Successful Selenium AutomationAlliance Successful Selenium Automation
Alliance Successful Selenium Automationsadams22
 

Was ist angesagt? (20)

Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...
Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...
Code Reuse Made Easy: Uncovering the Hidden Gems of Corporate and Open Source...
 
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
 
Dave 3 presentation
Dave 3 presentationDave 3 presentation
Dave 3 presentation
 
Learn C Programming Language by Using GDB
Learn C Programming Language by Using GDBLearn C Programming Language by Using GDB
Learn C Programming Language by Using GDB
 
Python_for_Visual_Effects_and_Animation_Pipelines
Python_for_Visual_Effects_and_Animation_PipelinesPython_for_Visual_Effects_and_Animation_Pipelines
Python_for_Visual_Effects_and_Animation_Pipelines
 
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...
Unleashing Intel® Advanced Vector Extensions 512 (Intel® AVX-512) Inside the ...
 
Droidcon ndk cpu_architecture_optimization
Droidcon ndk cpu_architecture_optimizationDroidcon ndk cpu_architecture_optimization
Droidcon ndk cpu_architecture_optimization
 
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intel
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intelDroidcon2013 ndk cpu_architecture_optimization_weggerle_intel
Droidcon2013 ndk cpu_architecture_optimization_weggerle_intel
 
The anatomy and philosophy of Android - Google I/O 2009
The anatomy and philosophy of Android - Google I/O 2009The anatomy and philosophy of Android - Google I/O 2009
The anatomy and philosophy of Android - Google I/O 2009
 
Android media framework overview
Android media framework overviewAndroid media framework overview
Android media framework overview
 
V Labs Product Presentation
V Labs  Product PresentationV Labs  Product Presentation
V Labs Product Presentation
 
Dalvik Vm &amp; Jit
Dalvik Vm &amp; JitDalvik Vm &amp; Jit
Dalvik Vm &amp; Jit
 
Eclipse Summit 2008 - Thales - SolFa
Eclipse Summit 2008 - Thales - SolFaEclipse Summit 2008 - Thales - SolFa
Eclipse Summit 2008 - Thales - SolFa
 
Explore Android Internals
Explore Android InternalsExplore Android Internals
Explore Android Internals
 
Operating System Windows CE 7.0 and Processor ARM Advantages and Disadvantages
Operating System Windows CE 7.0 and Processor ARM Advantages and DisadvantagesOperating System Windows CE 7.0 and Processor ARM Advantages and Disadvantages
Operating System Windows CE 7.0 and Processor ARM Advantages and Disadvantages
 
Inside Android's Dalvik VM - NEJUG Nov 2011
Inside Android's Dalvik VM - NEJUG Nov 2011Inside Android's Dalvik VM - NEJUG Nov 2011
Inside Android's Dalvik VM - NEJUG Nov 2011
 
Release planning
Release planningRelease planning
Release planning
 
Build Community Android Distribution and Ensure the Quality
Build Community Android Distribution and Ensure the QualityBuild Community Android Distribution and Ensure the Quality
Build Community Android Distribution and Ensure the Quality
 
Alliance Successful Selenium Automation
Alliance Successful Selenium AutomationAlliance Successful Selenium Automation
Alliance Successful Selenium Automation
 
Resume
ResumeResume
Resume
 

Ähnlich wie Program development tools

Skype testing overview
Skype testing overviewSkype testing overview
Skype testing overviewQA Club Kiev
 
CMake: Improving Software Quality and Process
CMake: Improving Software Quality and ProcessCMake: Improving Software Quality and Process
CMake: Improving Software Quality and ProcessMarcus Hanwell
 
Kubernetes and the Rise of Application-centric Computing
Kubernetes and the Rise of Application-centric ComputingKubernetes and the Rise of Application-centric Computing
Kubernetes and the Rise of Application-centric ComputingBitnami
 
Creating an Embedded System Lab
Creating an Embedded System LabCreating an Embedded System Lab
Creating an Embedded System LabNonamepro
 
Embedded system-Introduction to development cycle and development tool
Embedded system-Introduction to development cycle and development  toolEmbedded system-Introduction to development cycle and development  tool
Embedded system-Introduction to development cycle and development toolPantech ProLabs India Pvt Ltd
 
02 - Build and Deployment Management
02 - Build and Deployment Management02 - Build and Deployment Management
02 - Build and Deployment ManagementSergii Shmarkatiuk
 
Srikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth Pilli
 
Automatize everything
Automatize everythingAutomatize everything
Automatize everythingBoris Bucha
 
Kitware: Qt and Scientific Computing
Kitware: Qt and Scientific ComputingKitware: Qt and Scientific Computing
Kitware: Qt and Scientific Computingaccount inactive
 
C# Production Debugging Made Easy
 C# Production Debugging Made Easy C# Production Debugging Made Easy
C# Production Debugging Made EasyAlon Fliess
 
Using PSoC Creator
Using PSoC CreatorUsing PSoC Creator
Using PSoC CreatorLloydMoore
 
Rhapsody reverseengineering
Rhapsody reverseengineeringRhapsody reverseengineering
Rhapsody reverseengineeringScott Althouse
 
Flash Catalyst at Flex Camp Orange County
Flash Catalyst at Flex Camp Orange CountyFlash Catalyst at Flex Camp Orange County
Flash Catalyst at Flex Camp Orange CountyJuan Sanchez
 
Automated Build using teamcity
Automated Build using teamcityAutomated Build using teamcity
Automated Build using teamcityMd Jawed
 

Ähnlich wie Program development tools (20)

Introduction to Code Composer Studio 4
Introduction to Code Composer Studio 4Introduction to Code Composer Studio 4
Introduction to Code Composer Studio 4
 
Skype testing overview
Skype testing overviewSkype testing overview
Skype testing overview
 
CMake: Improving Software Quality and Process
CMake: Improving Software Quality and ProcessCMake: Improving Software Quality and Process
CMake: Improving Software Quality and Process
 
Kubernetes and the Rise of Application-centric Computing
Kubernetes and the Rise of Application-centric ComputingKubernetes and the Rise of Application-centric Computing
Kubernetes and the Rise of Application-centric Computing
 
Creating an Embedded System Lab
Creating an Embedded System LabCreating an Embedded System Lab
Creating an Embedded System Lab
 
Game Studio
Game StudioGame Studio
Game Studio
 
Embedded system-Introduction to development cycle and development tool
Embedded system-Introduction to development cycle and development  toolEmbedded system-Introduction to development cycle and development  tool
Embedded system-Introduction to development cycle and development tool
 
02 - Build and Deployment Management
02 - Build and Deployment Management02 - Build and Deployment Management
02 - Build and Deployment Management
 
desktop_resume
desktop_resumedesktop_resume
desktop_resume
 
DDGen Product Brief
DDGen Product BriefDDGen Product Brief
DDGen Product Brief
 
Srikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latest
 
Automatize everything
Automatize everythingAutomatize everything
Automatize everything
 
Kitware: Qt and Scientific Computing
Kitware: Qt and Scientific ComputingKitware: Qt and Scientific Computing
Kitware: Qt and Scientific Computing
 
C# Production Debugging Made Easy
 C# Production Debugging Made Easy C# Production Debugging Made Easy
C# Production Debugging Made Easy
 
Using PSoC Creator
Using PSoC CreatorUsing PSoC Creator
Using PSoC Creator
 
Rhapsody reverseengineering
Rhapsody reverseengineeringRhapsody reverseengineering
Rhapsody reverseengineering
 
System software
System softwareSystem software
System software
 
Flash Catalyst at Flex Camp Orange County
Flash Catalyst at Flex Camp Orange CountyFlash Catalyst at Flex Camp Orange County
Flash Catalyst at Flex Camp Orange County
 
Automated Build using teamcity
Automated Build using teamcityAutomated Build using teamcity
Automated Build using teamcity
 
E.s unit 6
E.s unit 6E.s unit 6
E.s unit 6
 

Mehr von Pantech ProLabs India Pvt Ltd

Choosing the right processor for embedded system design
Choosing the right processor for embedded system designChoosing the right processor for embedded system design
Choosing the right processor for embedded system designPantech ProLabs India Pvt Ltd
 
Brainsense -Introduction to brain computer interface
Brainsense -Introduction to brain computer interfaceBrainsense -Introduction to brain computer interface
Brainsense -Introduction to brain computer interfacePantech ProLabs India Pvt Ltd
 

Mehr von Pantech ProLabs India Pvt Ltd (20)

Registration process
Registration processRegistration process
Registration process
 
Choosing the right processor for embedded system design
Choosing the right processor for embedded system designChoosing the right processor for embedded system design
Choosing the right processor for embedded system design
 
Brain Computer Interface
Brain Computer InterfaceBrain Computer Interface
Brain Computer Interface
 
Electric Vehicle Design using Matlab
Electric Vehicle Design using MatlabElectric Vehicle Design using Matlab
Electric Vehicle Design using Matlab
 
Image processing application
Image processing applicationImage processing application
Image processing application
 
Internet of Things using Raspberry Pi
Internet of Things using Raspberry PiInternet of Things using Raspberry Pi
Internet of Things using Raspberry Pi
 
Internet of Things Using Arduino
Internet of Things Using ArduinoInternet of Things Using Arduino
Internet of Things Using Arduino
 
Brain controlled robot
Brain controlled robotBrain controlled robot
Brain controlled robot
 
Brain Computer Interface-Webinar
Brain Computer Interface-WebinarBrain Computer Interface-Webinar
Brain Computer Interface-Webinar
 
Development of Deep Learning Architecture
Development of Deep Learning ArchitectureDevelopment of Deep Learning Architecture
Development of Deep Learning Architecture
 
Future of AI
Future of AIFuture of AI
Future of AI
 
Gate driver design and inductance fabrication
Gate driver design and inductance fabricationGate driver design and inductance fabrication
Gate driver design and inductance fabrication
 
Brainsense -Brain computer Interface
Brainsense -Brain computer InterfaceBrainsense -Brain computer Interface
Brainsense -Brain computer Interface
 
Median filter Implementation using TMS320C6745
Median filter Implementation using TMS320C6745Median filter Implementation using TMS320C6745
Median filter Implementation using TMS320C6745
 
Waveform Generation Using TMS320C6745 DSP
Waveform Generation Using TMS320C6745 DSPWaveform Generation Using TMS320C6745 DSP
Waveform Generation Using TMS320C6745 DSP
 
Interfacing UART with tms320C6745
Interfacing UART with tms320C6745Interfacing UART with tms320C6745
Interfacing UART with tms320C6745
 
Switch & LED using TMS320C6745 DSP
Switch & LED using TMS320C6745 DSPSwitch & LED using TMS320C6745 DSP
Switch & LED using TMS320C6745 DSP
 
Led blinking using TMS320C6745
Led blinking using TMS320C6745Led blinking using TMS320C6745
Led blinking using TMS320C6745
 
Introduction to tms320c6745 dsp
Introduction to tms320c6745 dspIntroduction to tms320c6745 dsp
Introduction to tms320c6745 dsp
 
Brainsense -Introduction to brain computer interface
Brainsense -Introduction to brain computer interfaceBrainsense -Introduction to brain computer interface
Brainsense -Introduction to brain computer interface
 

Kürzlich hochgeladen

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 

Kürzlich hochgeladen (20)

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 

Program development tools

  • 1. Chapter 2 : Program Development Tools Digital Signal Controller TMS320F2812 Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 2. Code Composer Studio® IDE Menus or Icons CPU Help Project Manager: Window Source & object files File dependencies Compiler, Assembler & Linker build options Full C/C++ & Assembly Debugging: C & ASM Source Mixed mode Disassembly (patch) Set Break Points Set probe Points Productive Editor: Structure Expansion Status Watch window Graph window Memory window window Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 3. Code Build lnk.cmd Compile Composer Studio SIM Probe In eZdsp™ Asm Link Debug EVM DSP/BIOS Edit DSP/BIOS Probe Out Config Third Libraries Graphs Tool Party Profiling XDS • Code Composer Studio includes: – Integrated Edit/Debug GUI DSP – Code Generation Tools Board – DSP/BIOS Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 4. Code Composer Studio: IDE • Integrates: edit, code generation, and debug • Single-click access using buttons • Powerful graphing/profiling tools • Automated tasks using GEL scripts • Built-in access to BIOS functions • Support TI or 3rd party plug-ins Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 5. The CCS Project Project (.pjt) files contain: • Source files (by reference) – Source (C, assembly) – Libraries – DSP/BIOS configuration – Linker command files • Project settings: – Build Options (compiler and assembler) – Build configurations – DSP/BIOS – Linker Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 6. Build Options GUI - Compiler • GUI has 8 pages of categories for code generation tools • Controls many aspects of the build process, such as: – Optimization level – Target device – Compiler/assembly/link options Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 7. Build Options GUI - Linker • GUI has 2 categories for linking • Specifies various link options • “.Debug” indicates on subfolder level below project (.pjt) location Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 8. Default Build Configurations • For new projects, CCS automatically creates two build configurations: – Debug (unoptimized) – Release (optimized) • Use the drop-down menu to quickly select the build configuration • Add/Remove your own custom build configurations using Project Configurations • Edit a configuration: 1. Set it active 2. Modify build options 3. Save project Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 9. Learning by doing - Step by Step Code Composer Studio - The Basics 1. The Start-up - Window 2. Create a F28x - project, based on C language 3. Debug your program 4. Watch your variables 5. Perform a Single Step Debug 6. Use Breakpoints 7. What is a Probe Point for ? 8. Other View Commands 9. GEL - General Extension Language Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 10. 1. The Startup - Window Project- tree Working Area Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 11. 2. Create a F28x - project • Project ==> New give your project a name : “Lab1”, select a target and a suitable location of your hard disk: Note : The project file (“Lab1.pjt) is a plain ASCII-text file and stores all set-ups and options of the project. This is very useful for a version management. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 12. Write a C-Source Code : File New Source File unsigned int i=0,k=0; void main (void) { while(1) { for (i=0;i<100;i++) k=i*i; } }  File Save as : “lab1.c” Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 13. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 14. • Add your file to the project :   Project  Add files to project – Add: “lab1.c” • Compile your source code :  Project  Compile File – active window will be compiled – in the event of syntax errors : modify your source code as needed • Add the C-runtime-library to your project :  Project  Build Options  Linker  Library Search Path : c:tic2000cgtoolslib  Project  Build Options  Linker  Include Libraries : rts2800_ml.lib • Add the stack- size of 0x400  Project  Build Options  Linker  Stack Size : 0x400 Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 15. Close the build-window by ‘OK’ Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 16. • Add the Linker - Command File to your project:  Project  Add Files to Project  ..cmdEzDSP_RAM_lnk.cmd • Finally : Build the code ( compile / assemble / link ) :  Project  Build Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 17. Placing Sections in Memory Memory Sections 0x00 0000 M0SARAM (0x400) .ebss 0x00 0400 M1SARAM (0x400) .stack 0x3D 8000 FLASH .cinit (0x20000) .text Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 18. Linking   Memory description Memory description  How to place s/w into h/w  How to place s/w into h/w name.cmd .obj Linker .out .map Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 19. Linker Command File MEMORY { PAGE 0: /* Program Space */ FLASH: org = 0x3D8000, len = 0x20000 PAGE 1: /* Data Space */ M0SARAM: org = 0x000000, len = 0x400 M1SARAM: org = 0x000400, len = 0x400 } SECTIONS { .text: > FLASH PAGE 0 .ebss: > M0SARAM PAGE 1 .cinit: > FLASH PAGE 0 .stack: > M1SARAM PAGE 1 } Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 20. • Load the binary code into the DSP :  File  Load Program  DebugLab1.out – Note: a new binary code can be downloaded automatically into the target. This is done by  Option  Customize  Program Load Options Load Program after Build. This setup will be stored for permanently. • Run the program until label “main”  Debug  Go main. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 21. yellow arrow : current PC Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 22. 3. Debug your code ! • Perform a real time run :  Debug  Run (F5) Note 1: the bottom left corner will be marked as : “DSP Running”. You’ll see no activity on the peripherals of the Adapter Board because our first example program does not use any of them ! Note 2: the yellow arrow is no longer visible – that’s another sign of a real time run. • Stop the real time run :  Debug  Halt • Reset the DSP : Debug  Reset CPU Debug  Restart • Run again to main :  Debug Go Main Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 23. 4. Watch your variables • Open the Watch Window :  View  Watch Window • The variable ‘i’ is already visible inside the “Watch Locals”-window . • To see also the global ‘k’ we need to add this variable manually. This can be done inside window ‘Watch 1’. In the column ‘name’ we just enter ‘k’ and in the second line ‘i’. – Note : another convenient way is to mark the variables inside the source code with the right mouse button and then select “Add to watch window” • note : with the column ‘radix’ one can adjust the data format between decimal, hexadecimal, binary etc. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 24. Watch your variables Watch- Window Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 25. 5. Perform a Single Step Debug • Perform a single step trough the program :  Debug  Step Into ( or F8 ) • Watch the current PC ( yellow arrow) and the numerical values of i and k in Watch Window while you single step through the code ! • There are more debug - commands available, see next slide Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 26. Perform a Single Step Debug Source Single Step Source Step Over Step Out Assembly Single Step Assembly Step Over Run to Halt Run cursor Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 27. 6. Adding a Breakpoint • Set a Breakpoint : – Place the Cursor in Lab1.c on line : k = i * i; – Click right mouse and select ‘Toggle Breakpoint’ – the line is marked with a red dot ( = active breakpoint ) Note : most Code Composer Studio Commands are also available through buttons or trough Command -Keys ( see manual, or help ) • Reset the Program  Debug  Reset CPU  Debug  Restart • Perform a real time run  Debug  Run ( or F5) • DSP stops when reaching an active breakpoint • Repeat ‘Run’ and watch your variables • Remove the breakpoint ( Toggle again) when you’re done. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 28. Adding a Breakpoint Toggle Breakpoint Remove all Breakpoints Red dot : Yellow arrow : active Current PC Breakpoint Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 29. 7. Set a Probe Point • Causes an update of a particular window at a specific point in your program. • When a window is created it is updated at every breakpoint. However, you can change this so the window is updated only when the program reaches the connected Probe Point. When the window is updated, execution of the program is continued. • To set a Probe - Point : – Click right mouse on the line ‘k = i*i;’ in the program first.c – select : ‘Toggle Probe Point ‘ ( indicated by a blue dot ) – select  Debug  Probe Points... – In the Probe Point Window click on the line ‘first.c line 13 -> no Connection’ – in the ‘Connect to’ - selector select ‘Watch Window’ – exit this dialog with the ‘Replace’ and ‘OK’ – Button • Run the program and verify that the watch window is updated continuously. Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 30. Set a Probe Point Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 31. 8. Other View Commands • The View menu includes more useful windows to monitor and control the DSP •  View  Registers  Core •  View  Registers  Status – click right mouse inside the new windows and select ‘Float in Main Window’ – double click on line ‘ACC’ and modify the value inside the Accumulator ACC Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 32. • To view both the Assembler code and the C Source Code : • click right mouse inside “Lab1.c” and select “Mixed Mode” • The Assembler Instruction Code generated by the Compiler is added and printed in grey colour • Single Step ( ‘Assembly Step Into’ ) is now possible on instruction level – Perform :  Debug  Reset DSP  Debug  Restart  Debug  Go Main  Debug  Step Into (F8) – You’ll see two arrows , a yellow one on C-lines and a green one for assembler instruction-lines Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 33. 8. View C and Disassembly Current C - line Current Instruction Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt
  • 34. 9. GEL - General Extension Language • language similar to C • lets you create functions to extend Code Composer's features • to create GEL functions use the GEL grammar • load GEL-files into Code Composer • With GEL, you can: – access actual/simulated target memory locations – add options to Code Composer’s GEL menu • GEL is useful for automated testing and user workspace adjustment . • GEL - files are ASCII with extension *.gel Technology beyond the Dreams™ Copyright © 2006 Pantech Solutions Pvt