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.

F28027

Other Parts Discussed in Thread: CONTROLSUITE

Please let me know the Include  Search path(Include options) &  File search path in (C2000 Linker), 

compiler show error ("C28xx: GEL: Encountered a problem loading file: C:\piccolo\Picolo_New\SCI_UART\Debug\SCI_UART.out Could not open file")

  • Manoj,

    Please provide more information on what is happening.

    What CCS version are you using?

    What is your target configuration and what GEL file is it setup with?

    Did you try to execute a GEL function from the scripts menu, and then got the error?  If so, what GEL function.  If not, what were you doing when the error message appeared?

    Did you look in the c:\piccolo\Picolo_New\SCI_UART\Debug folder for the SCI_UART.out file?  Is it there?  If not, did you successfully build your project?

     

    Regards,

    David

  • Hello Sir,

    Thanks for the reply

    I am using CCS version  Version: 5.2.0

    Since i am new to F28027, When i create a New project i dont know how to add the linker files & compiler files in respective  C2000 Compiler & C2000 Linker in project

    properties. My target configuration is default one . And also the project is not loading from flash memory

    When i build my project it show the error Which i have specified Earlier .

    But when i try it with example files in control suite in works fine. loading from flash & RAM When i selected Build configuration --> Set active--> Flash or RAM

    Please help me how to resolve all these problems  

    Thanks & Regards

    Manoj

  • Manoj,

    When you create a new CCS project, expand the "Advanced Settings" section on the project creation pop-up:

     

    For Linker command, if you leave it set to <automatic> it will pull in a .cmd file for the device that you've specified.  Alternately, you can use the pulldown menu to select a linker command file.  For example, if I leave set to <automatic> it will create a file 28027_RAM_lnk.cmd in the project folder.

    For Runtime support library, leave set to <automatic>.  This will choose the right library based for the specified device.

    When you create the project, try choosing 'Empty Project (with main.c)' as the project type.  You should be able to build the created project immediately in CCS.

     

    The settings you choose for the .cmd and library at project creation will be duplicated in the project properties:

    You can change the .cmd and library specified here if you want.  For example, if you want to use your own .cmd file, select <none> in the Linker command file box.  The old .cmd file will be greyed out in your project manager window in CCS.  You can delete it from there, and replace with your own .cmd.

    Regards,

    David

     

  • Till creation of new project there is no problem and after completing the program when i try to compile the project the following problem exists.. which i have specified in picture

    highlighted


























    There is ? mark before the  #include "DSP28x_Project.h"  


    How to resolve this error?




    i have also include the Project --> properties --> C2000 compiler --> Include option

    this is the include option of my project named GPIO




     Project --> properties --> C2000 linker --> File search path



    Is there any include path & file search path that i have to include in the above said option.

    so please let me know how to rectify the problem

    Thanks & Regards,

    Manoj


  • Manoj,

    It looks like you are trying to use the DriverLib from ControlSuite?  You need to specify a compiler include search path to these files.  For example:

    C:\TI\controlSUITE\device_support\f2802x\v210

    See Section 2.4, page 8 of the f2802x-DRL-UG.pdf file in this folder:

    C:\TI\controlSUITE\device_support\f2802x\v210\doc

    - David