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.

RTOS/PROCESSOR-SDK-C667X: PDK project create problem

Part Number: PROCESSOR-SDK-C667X
Other Parts Discussed in Thread: CCSTUDIO

Tool/software: TI-RTOS

I installed Processor SDK RTOS C667x v5.03.00.07 and Code Composer Studio v8.3.1 on Linux Ubuntu v16.04 LTS.

When I try to create some examples as explained here by executing the command:

$./pdkProjectCreate.sh c6678 all little all all dsp

It just creates a bunch of folders with macros.ini fileineach of them.

All installations are in the ~/ti folder.

I see that this issue was present previously (more than a year ago) as mentioned in the linked question.

It was resolved by using a Windows machine with I unfortunately don't have.

What alternatives do I have?

Thank you...

 

  • Hi,

    Your workflow for creating a project should be:
      cd ti/pdk_c667x_2_0_12/packages/

      source pdksetupenv.sh 

      ./pdkProjectCreate.sh C6678 all little gpio all dsp

    The log for successfully created project is:
     =========================================================================
    Configuration:
      SOC             :   C6678
      BOARD           :   all
      ENDIAN          :   little
      MODULE          :   gpio
      PROJECT_TYPE    :   all
      PROCESSOR       :   dsp
      PDK_SHORT_NAME  :   /home/users/ykovachev/ti/pdk_c667x_2_0_12/packages
    =========================================================================
    Checking Configuration...
      PDK_PARTNO         : C6678L
      PDK_ECLIPSE_ID     : com.ti.pdk.c667x
      RTSC_PLATFORM_NAME : ti.platforms.evm6678
      RTSC_TARGET        : ti.targets.elf.C66
      CCS_DEVICE         : com.ti.ccstudio.deviceModel.C6000.GenericC64xPlusDevice
    *****************************************************************************
    Detecting all projects in PDK and importing them in the workspace /home/users/ykovachev/ti/pdk_c667x_2_0_12/packages/MyExampleProjects
    Detected Project ./GPIO_LedBlink_C6678_EVM_c66xTestProject.txt

    --------------------------------------------------------------------------------
    Creating project 'GPIO_LedBlink_C6678_EVM_c66xTestProject'...


    Done!
    Copying macros.ini
    Project generation complete
    *****************************************************************************

    As a result there is a folder: ~/ti/pdk_c667x_2_0_12/packages/MyExampleProjects/GPIO_LedBlink_C6678_EVM_c66xTestProject, which contains:
      ykovachev@lin-0373:~/ti/pdk_c667x_2_0_12/packages/MyExampleProjects/GPIO_LedBlink_C6678_EVM_c66xTestProject$ ls -la
    total 60
    drwxr-xr-x  3 ykovachev mmsol  4096 Jun 20 11:34 .
    drwxr-xr-x 39 ykovachev mmsol  4096 Jun 20 11:34 ..
    -rw-r--r--  1 ykovachev mmsol   429 Jun 20 11:34 .ccsproject
    -rw-r--r--  1 ykovachev mmsol 35175 Jun 20 11:34 .cproject
    -rwxr-xr-x  1 ykovachev mmsol  1056 Jun 20 11:34 macros.ini
    -rw-r--r--  1 ykovachev mmsol  1451 Jun 20 11:34 .project
    drwxr-xr-x  2 ykovachev mmsol  4096 Jun 20 11:34 .settings
    -rw-r--r--  1 ykovachev mmsol     0 Jun 20 11:34 .xdchelp

    As you can see only macros.ini file is visible in the folder, the other files are hidden. If you open CCS and import the GPIO_LedBlink_C6678_EVM_c66xTestProject you will be able to see all linked .c & .h files and build the project.


    Best Regards,
    Yordan

  • Importing the project into CSS worked.

    Thank you