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.

OMAP-L138: Looking for example starter projects for LCDKOMAPL138

Part Number: OMAP-L138
Other Parts Discussed in Thread: OMAPL138, CCSTUDIO, MATHLIB, SYSBIOS

Hello, I am looking for example projects that record and play audio streams (from the microphone and to the speakers) and also react to the physical buttons on the LCDK being pushed.

Thanks!

  • Hello,

    In Processor SDK RTOS, there is a McASP audio example that takes audio input from a PC using the LINE IN port and outputs it to speakers/headphones via the LINE OUT port. It should be possible to modify this example to use the MIC IN port instead as well if needed. 

    There is a GPIO led blinking example that toggles the LEDs via software. It can be modified to blink an LED when a button is pushed with the following modifications.

    In GPIO_board.c:

    //    GPIO_DEVICE_CONFIG(GPIO_LED0_PORT_NUM, GPIO_LED0_PIN_NUM) |
    //    GPIO_CFG_IN_INT_RISING | GPIO_CFG_INPUT,
    
     /* Input pin with interrupt enabled */
        GPIO_DEVICE_CONFIG(GPIO_LED0_PORT_NUM, 37) |    
        GPIO_CFG_IN_INT_BOTH_EDGES | GPIO_CFG_INPUT,

    The push buttons on the LCDK are connected to GPIO2[4] and GPIO2[5]. You can see this corresponds to pins 37 and 38, respectively, by referring to Table 21-1 in the OMAP-L138 Technical Reference Manual

    In main_led_blink.c:

    //GPIO_socSetBankInt(GPIO_LED0_PORT_NUM, GPIO_LED0_PIN_NUM, NULL);
    GPIO_socSetBankInt(GPIO_LED0_PORT_NUM, 37, NULL);
    //    while(1)
    //    {
    //#if defined(SOC_K2H) || defined(SOC_K2K) || defined(SOC_K2E) || defined(SOC_K2G) || defined(SOC_OMAPL137) || defined(SOC_OMAPL138) || defined(SOC_AM65XX) || defined(SOC_J721E)
    //        GPIO_toggle(USER_LED0);
    //#endif
    //        AppDelay(DELAY_VALUE);
    //        if (testOutput)
    //        {
    //            UART_printStatus("\n All tests have passed \n");
    //            testOutput = 0;
    //        }
    //    }
    
    while(1); //wait here for user input instead of toggling via code

    This code will blink LED D4 when the S3 button is pushed (S3 actually corresponds to pin 38, not 37, but there is a bug in the GPIO driver that +1 to the pin #...this will be fixed in the next SDK release).


    I hope this helps. I'm attaching some links below as well to help you get started. If you have any questions please let me know.

    Processor SDK for OMAPL138

    Processor SDK RTOS McASP Documentation

    Processor SDK RTOS GPIO Documentation

    Processor SDK RTOS Getting Started Guide

    OMAP-L138/C6748 Low-Cost Development Kit (LCDK) User's Guide

    Regards,
    Sahin

  • Thank you. I am checking these out. I will get back in touch if I run into any issues.

  • Hi Sahin, I installed the RTOS folder, but I am not able to find any project from using CCS v9.3.0.

    I have both CCS v9.3.0 and CCSv7.0.0 installed on my PC. 

    Can you please let me know what the exact sequence of steps is to open audio_benchmark_starterkit using CCS?

  • The CCS projects for the PDK project need to be generated using the pdkProjectCreate script as described here: http://software-dl.ti.com/processor-sdk-rtos/esd/docs/latest/rtos/index_overview.html#pdk-example-and-test-project-creation

    For example, to build the GPIO example project for the lcdkOMAPL138 DSP core, invoke the following commands:

    cd C:\ti\pdk_omapl138_1_0_10\packages
    pdksetupenv.bat
    pdkProjectCreate.bat OMAPL138 lcdkOMAPL138 little gpio all dsp

    The CCS projects will then be located under \pdk_omapl138_1_0_10\packages\MyExampleProjects and can be imported into CCS using the Import Wizard.

    The audio benchmark starterkit is considered a "demo" so its located under the demos folder in the SDK. Similarly, the CCS projects for it need to be generated using the benchmarkProjectCreate script as described here: http://software-dl.ti.com/processor-sdk-rtos/esd/docs/latest/rtos/index_examples_demos.html#how-to-build-the-benchmarks

    So you will need to run the following commands to build all the benchmark projects:

    cd C:\ti\processor_sdk_rtos_omapl138_6_01_00_08
    setupenv.bat
    cd demos/audio-benchmark-starterkit
    BenchmarkProjectCreate.bat OMAPL138 all all

    Note, there is a bug in the 6.1/6.2 release that will need to be fixed before running the above commands. You will need to update the following lines in BenchmarkProjectCreate.bat to match the lib versions in your SDK.

    REM Version of DSPLIB
    set DSPLIB_VERSION=3_4_0_3
    
    REM Version of MATHLIB
    set MATHLIB_VERSION=3_1_2_3

    The benchmark projects will then be located under audio-benchmark-starterkit/BenchmarkProjects and can be imported into CCS.

    Regards,
    Sahin

  • Hi Sahin, I am getting the following error when I run the pdkProjectCreate.bat as you instructed.

    c:\ti\pdk_omapl138_1_0_10\packages>pdkProjectCreate.bat OMAPL138 lcdkOMAPL138 little gpio all dsp
    =========================================================================
    Configuration:
       SOC             :   OMAPL138
       BOARD           :   lcdkOMAPL138
       ENDIAN          :   little
       MODULE          :   gpio
       PROJECT_TYPE    :   all
       PROCESSOR       :   dsp
       PDK_SHORT_NAME  :   c:\ti\PDK_OM~1\packages\
    =========================================================================
    Checking Configuration...
    Complete
    =========================================================================
       PDK_PARTNO         : OMAPL138
       PDK_ECLIPSE_ID     : com.ti.pdk.omapl138
       RTSC_PLATFORM_NAME : ti.platforms.evmOMAPL138
       RTSC_TARGET        : ti.targets.elf.C674
       CCS_DEVICE         : "com.ti.ccstudio.deviceModel.C6000.GenericC674xDevice"
    *****************************************************************************
    Detecting all projects in PDK and importing them in the workspace c:\ti\PDK_OM~1\packages\\MyExampleProjects
    Detected Test Project: GPIO_LedBlink_lcdkOMAPL138_c674xTestProject
    The system cannot find the path specified.
    Copying macros.ini
    The system cannot find the path specified.
            0 file(s) copied.
    Project generation complete
    *****************************************************************************
    c:\ti\pdk_omapl138_1_0_10\packages>         
  • Hi Sahin, I edited the pdkProjectCreate.bat to use the ccs file that I had installed c:\ti\ccs930\ccs. And I was able to move forward a little bit. However, now I am stuck with the following error.

    c:\ti\pdk_omapl138_1_0_10\packages>pdkProjectCreate.bat OMAPL138 lcdkOMAPL138 little gpio all dsp
    c:\ti\PDK_OM~1\packages\
    =========================================================================
    Configuration:
       SOC             :   OMAPL138
       BOARD           :   lcdkOMAPL138
       ENDIAN          :   little
       MODULE          :   gpio
       PROJECT_TYPE    :   all
       PROCESSOR       :   dsp
       PDK_SHORT_NAME  :   c:\ti\PDK_OM~1\packages\
    =========================================================================
    Checking Configuration...
    Complete
    =========================================================================
       PDK_PARTNO         : OMAPL138
       PDK_ECLIPSE_ID     : com.ti.pdk.omapl138
       RTSC_PLATFORM_NAME : ti.platforms.evmOMAPL138
       RTSC_TARGET        : ti.targets.elf.C674
       CCS_DEVICE         : "com.ti.ccstudio.deviceModel.C6000.GenericC674xDevice"
    *****************************************************************************
    Detecting all projects in PDK and importing them in the workspace c:\ti\PDK_OM~1\packages\\MyExampleProjects
    Detected Test Project: GPIO_LedBlink_lcdkOMAPL138_c674xTestProject
    c:\ti\PDK_OM~1\packages\ti\drv\gpio\test\led_blink\omapl138\c674\bios\
    --------------------------------------------------------------------------------
    Creating project 'GPIO_LedBlink_lcdkOMAPL138_c674xTestProject'...
        NOTE: Compiler version '8.3.2' is not currently installed! - defaulting to '8.3.5'.
      !ERROR: Unknown product-type ID 'com.ti.pdk.omapl138'!
        NOTE: Refer to the following list of available product-type IDs (the display-names in square brackets are for reference only):
            ti.mas.dsplib.c64Px [DSPLIB C64x+]
            ti.mas.dsplib.c674x [DSPLIB C674x]
            ti.mas.mathlib.c674x [MATHLIB C674x]
            com.ti.rtsc.SYSBIOS [SYS/BIOS]
            com.ti.uia [System Analyzer (UIA Target)]
            com.ti.rtsc.XDAIS [XDAIS]
            com.ti.rtsc.XDCtools [XDCtools]
    Copying macros.ini
    The system cannot find the path specified.
            0 file(s) copied.
    Project generation complete
    *****************************************************************************
  • Hi Sahin, following up on this. Your help is much appreciated.

  • Hi Mahesh

    Sahin is out of office today. Please expect a response on Monday.

     I regret the delay

    Regards

    Mukul 

  • Hello Sahin and Mukul, following up on this. Thanks very much for your help.

  • Mahesh Godavarti said:

      !ERROR: Unknown product-type ID 'com.ti.pdk.omapl138'!

        NOTE: Refer to the following list of available product-type IDs (the display-names in square brackets are for reference only):
            ti.mas.dsplib.c64Px [DSPLIB C64x+]
            ti.mas.dsplib.c674x [DSPLIB C674x]
            ti.mas.mathlib.c674x [MATHLIB C674x]
            com.ti.rtsc.SYSBIOS [SYS/BIOS]
            com.ti.uia [System Analyzer (UIA Target)]
            com.ti.rtsc.XDAIS [XDAIS]
            com.ti.rtsc.XDCtools [XDCtools]

    It appears the PDK package hasn't been discovered and installed by CCS.

    Within CCS, please navigate to Window > Preferences > Code Composer Studio > Products > Refresh and select and install the omapl138 PDK package. If you don't see it, make sure "Show newly discovered products only" is unchecked in the Refresh window.

    Regards,
    Sahin

  • Thanks will try and let you know.

  • Thanks it worked. I will post again if I run into any new issues.

  • Hi Sahin, now I moved forward to installing the audio benchmark project.

    I had to edit CCS_INSTALL_PATH to point to where my ccs is installed which was C:\ti\ccs930\ccs

    I got the error shown below. Looks like the folder is missing macros.ini. Is this an important file or can I just ignore this error?

    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>BenchmarkProjectCreate.bat OMAPL138 all all
    =========================================================================
    Configuration:
       SOC             :   OMAPL138
       BOARD           :   all
       MODULE          :   all
       PDK_SHORT_NAME  :   c:\ti\PROCES~1\demos\AUDIO-~1\
    =========================================================================
    Checking Configuration...
    Complete
    =========================================================================
       PDK_PARTNO         : OMAPL138
       PDK_ECLIPSE_ID     :
       RTSC_PLATFORM_NAME : ti.platforms.evm6748
       RTSC_TARGET        : ti.targets.elf.C674
       CCS_DEVICE         : "com.ti.ccstudio.deviceModel.C6000.GenericC674xDevice"
    *****************************************************************************
    Detecting all projects in PDK and importing them in the workspace c:\ti\PROCES~1\demos\AUDIO-~1\\BenchmarkProjects
    Detected Test Project: Benchmark_FFT_lcdkOMAPL138_c674ExampleProject
    c:\ti\PROCES~1\demos\AUDIO-~1\scripts\
    --------------------------------------------------------------------------------
    Creating project 'Benchmark_FFT_lcdkOMAPL138_c674ExampleProject'...
        NOTE: Compiler version not specified - defaulting to '8.3.5'.
    Done!
    Copying macros.ini
    The system cannot find the file specified.
    Detected Test Project: Benchmark_FIR_lcdkOMAPL138_c674ExampleProject
    c:\ti\PROCES~1\demos\AUDIO-~1\scripts\
    --------------------------------------------------------------------------------
    Creating project 'Benchmark_FIR_lcdkOMAPL138_c674ExampleProject'...
        NOTE: Compiler version not specified - defaulting to '8.3.5'.
    Done!
    Copying macros.ini
    The system cannot find the file specified.
    Detected Test Project: Benchmark_IIR_lcdkOMAPL138_c674ExampleProject
    c:\ti\PROCES~1\demos\AUDIO-~1\scripts\
    --------------------------------------------------------------------------------
    Creating project 'Benchmark_IIR_lcdkOMAPL138_c674ExampleProject'...
        NOTE: Compiler version not specified - defaulting to '8.3.5'.
    Done!
    Copying macros.ini
    The system cannot find the file specified.
    No projects detected
    Project generation complete
    *****************************************************************************
    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>
  • Hi Sahin, I have started trying to build the GPIO project on CCS.9.3.0.

    I am attaching screenshots of my steps.

    Import the project

    I built the project without editing the Properties of the project.

    I got the following error as the target was not selected.

    So, I edited the properties of the project to point to the target. But I left out the linker command file

    I verified that the target was connected to the project.

    I rebuilt the project and selected debug to run the project on the target.

    However, I got the following error:

    Then, I tried after adding the OMAPL138.cmd to the project, but there was a clash between the existing linker.cmd file in the project and the OMAPL138.cmd file as shown below. I tried #if 0 the definition in OMALL138.cmd and I get the original error (when I did not add the OMAPL138.cmd to the project)

    Can you please help?

    Thanks!

  • Okay, I was able to figure out how to turn off the errors. I went to Debug configurations and unchecked PRU_0, PRU_1, and ARM_9

    Now, I am trying to figure out how to unset the build option --USE-BIOS. I tried editing the make file, but it warned me that it was generated from somewhere else. Where can I unset this option?

    Thanks!

  • Okay, looks it is set in the pdkProjectCreate.bat. So, I think it's okay for me to edit the make file option.

    %CCS_INSTALL_PATH%\%AUTO_CREATE_COMMAND% -data %MY_WORKSPACE% -application com.ti.ccstudio.apps.projectCreate -ccs.name %%~nI -ccs.outputFormat %OUTPUT_FORMAT% -ccs.setCompilerOptions "-DUSE_BIOS" -ccs.device %CCS_DEVICE% -ccs.endianness %ENDIAN% -ccs.kind executable -ccs.cgtVersion %CGT_VERSION% -rtsc.xdcVersion %XDC_VERSION% -rtsc.enableDspBios -rtsc.biosVersion %BIOS_VERSION% -rtsc.buildProfile "debug" -rtsc.products "%RTSC_PRODUCTS%" -rtsc.platform "%RTSC_PLATFORM_NAME%" -rtsc.target %RTSC_TARGET% -ccs.rts libc.a -ccs.args %%~nI%%~xI %SIMULATOR_SUPPORT_DEFINE% -ccs.overwrite full -ccs.setPostBuildStep "${TI_PDK_INSTALL_DIR}/packages/pdkAppImageCreate.bat ${TI_PDK_INSTALL_DIR}/packages ${CG_TOOL_ROOT} ${PROJECT_LOC}/${ConfigName} ${ProjName} %SOC% %PROCESSOR%" 

  • I cannot turn the USE_BIOS definition off. Can you please tell me where I can do this.

    I created a new project by editing the pdkProjectCreate.bat file. However, this option keeps showing up as one of the options for the compiler.

    Thanks!

  • Also, in the audio-benchmark-starterkit the only three projects available are for FIR, IIR, and FFT. I confirmed this by reading the user guide provided. Maybe, I need to reinstall the processor-sdk-rtos package?

    If you can respond that will be great.

    Essentially, there are two things I need help with:

    1. How to turn off USE_BIOS in the GPIO project

    2. How to install the McASP project

  • Okay, I was able to figure out how to install the McASP project.

    I did the following:

    c:\ti\pdk_omapl138_1_0_10\packages>pdkProjectCreate.bat OMAPL138 lcdkOMAPL138 little mcasp all dsp

    So, I need two questions answered:

    1. How to turn off USE_BIOS compiler option

    2. Whether the missing macros.ini in the audio-benchmark-starterkit are important

  • You are correct, the audio-benchmark-starterkit has three projects, FIR, IIR, and FFT. 

    As you already figured out, you need to create a target configuration to load and run the code as described here: http://software-dl.ti.com/processor-sdk-rtos/esd/docs/latest/rtos/index_how_to_guides.html#connecting-the-lcdk-to-code-composer-studio

    1. The USE_BIOS compiler option can be removed by going to the project's Build Settings > Build > C6000 Compiler > Predefined Symbols and removing it from the list. 

    2. The macros.ini file is used to set the paths for various components in the SDK. It is concerning that the script was unable to locate it. Please make sure you have set the SDK install path and setup the environment as described here: http://software-dl.ti.com/processor-sdk-rtos/esd/docs/latest/rtos/index_examples_demos.html#using-ccs-projects

    Regards,
    Sahin

  • Thanks Sahin, I was able to turn off the USE_BIOS option but I ran into some compile issues. I will open a separate thread for that.

    I am still not able to locate the macros.ini. Here are environment variables. The MACROS option clearly points to a file location which does not exist. I have highlighted that in red below. There is no macros.ini file under the audio-benchmark-starterkit folder. I have shared the contents of my audio-benchmark-starerkit folder at the very bottom of this message.

    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>set
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\maheshgodavarti\AppData\Roaming
    AUTO_CREATE_COMMAND=eclipse\eclipsec -noSplash
    BOARD_ARG=OMAPL138
    CCS_DEVICE="com.ti.ccstudio.deviceModel.C6000.GenericC674xDevice"
    CCS_INSTALL_PATH=C:\ti/ccs930/ccs
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=MAHESHGODAVE1FE
    ComSpec=C:\Windows\system32\cmd.exe
    CORE=c674
    DriverData=C:\Windows\System32\Drivers\DriverData
    DSPLIB_INSTALL_PATH =c:\ti/dsplib_c674x_3_4_0_4
    DSPLIB_VERSION=3_4_0_4
    ENDIAN=little
    endian_list=little
    GMAKE_INSTALL_PATH=C:\ti\xdctools_3_55_02_22_core
    HOMEDRIVE=C:
    HOMEPATH=\Users\maheshgodavarti
    IPC_PLATFORM=OMAPL138
    IS_CCS_VERSION_4=no
    IS_SIMULATOR_SUPPORT_NEEDED=no
    LOCALAPPDATA=C:\Users\maheshgodavarti\AppData\Local
    LOGONSERVER=\\MAHESHGODAVE1FE
    MACROS_FILE=c:\ti\PROCES~1\demos\AUDIO-~1\\macros.ini
    MATHLIB_INSTALL_PATH =c:\ti/mathlib_c674x_3_1_2_4
    MATHLIB_VERSION=3_1_2_4
    MODULE_ARG=""
    module_list= all FFT FIR IIR
    MY_WORKSPACE=c:\ti\PROCES~1\demos\AUDIO-~1\\BenchmarkProjects
    NUMBER_OF_PROCESSORS=2
    OS=Windows_NT
    OUTPUT_FORMAT=ELF
    Path=C:\ti\xdctools_3_55_02_22_core;C:\ti\xdctools_3_55_02_22_core;C:\ti\xdctools_3_55_02_22_core;C:\ti\xdctools_3_55_02_22_core;C:\ti\xdctools_3_55_02_22_core;C:\ti\xdctools_3_55_02_22_core;C:\Program Files (x86)\Parallels\Parallels Tools\Applications;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Users\maheshgodavarti\AppData\Local\Microsoft\WindowsApps;c:\Program Files\Vim\vim82\;
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PDK_INSTALL_PATH=c:\ti\pdk_omapl138_1_0_10
    PDK_INSTALL_PATH =c:\ti/pdk_omapl138_1_0_10
    PDK_PARTNO=OMAPL138
    PDK_SHORT_NAME=c:\ti\PROCES~1\demos\AUDIO-~1\
    PDK_SOC=omapl138
    PDK_VERSION=1_0_10
    PROCESSOR=dsp
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=9e0a
    proc_list=dsp
    PROC_SDK_INSTALL_PATH=C:/ti/processor_sdk_rtos_omapl138_6_01_00_08
    PROC_SDK_VERSION=omapl138_6_01_00_08
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    project_detected = 1
    PROMPT=$P$G
    PSModulePath=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
    PUBLIC=C:\Users\Public
    RTSC_PLATFORM_NAME=ti.platforms.evm6748
    RTSC_TARGET=ti.targets.elf.C674
    RULES_MAKE=C:\ti\pdk_omapl138_1_0_10\packages\Rules.make
    SDK_INSTALL_PATH=c:\ti
    SESSIONNAME=Console
    SOC=omapl138
    SOC_ARG=OMAPL138
    soc_list=K2G K2H K2E C667x C665x AM571x AM572x AM574x OMAPL138 OMAPL137 C6747 C6748
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\MAHESH~1\AppData\Local\Temp
    tempVar1=OMAPL138
    tempVar2=all
    tempVar3=all
    TMP=C:\Users\MAHESH~1\AppData\Local\Temp
    TOOLS_INSTALL_PATH=C:\ti
    USERDOMAIN=MAHESHGODAVE1FE
    USERDOMAIN_ROAMINGPROFILE=MAHESHGODAVE1FE
    USERNAME=maheshgodavarti
    USERPROFILE=C:\Users\maheshgodavarti
    windir=C:\Windows
    XDC_VERSION=3_55_02_22_core
    __SDK__INSTALL_DIR__=c:\ti\
    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>    
    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>dir
     Volume in drive C has no label.
     Volume Serial Number is 38FF-B030
     Directory of c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit
    01/29/2020  10:32 AM    <DIR>          .
    01/29/2020  10:32 AM    <DIR>          ..
    01/27/2020  10:16 AM             5,104 .BenchmarkProjectCreate.bat.un~
    01/27/2020  10:16 AM            12,003 BenchmarkProjectCreate.bat
    01/27/2020  10:09 AM            12,025 BenchmarkProjectCreate.bat~
    01/29/2020  10:33 AM    <DIR>          BenchmarkProjects
    10/19/2019  10:22 AM             4,741 create_sd.bat
    10/19/2019  10:22 AM             4,523 create_sd.sh
    01/20/2020  12:06 PM    <DIR>          docs
    10/19/2019  10:22 AM             1,977 makefile
    01/20/2020  12:06 PM    <DIR>          prebuilt-binaries
    10/19/2019  10:22 AM             1,295 ReadMe.txt
    01/20/2020  12:06 PM    <DIR>          scripts
    01/20/2020  12:06 PM    <DIR>          src
                   7 File(s)         41,668 bytes
                   7 Dir(s)  228,502,282,240 bytes free
    c:\ti\processor_sdk_rtos_omapl138_6_01_00_08\demos\audio-benchmark-starterkit>                                                                                                                                               
  • Mahesh,

    It turns out that error is harmless, I will file a ticket against it. 

    You should be able to see the CCS projects under ~\audio-benchmark-starterkit\BenchmarkProjects\ after running the script.

    Regards,
    Sahin