AM263x MCU+ SDK  08.02.00
CCS Tools

Introduction

This section describes CCS utility scripts that can optionally be used to make your development more productive.

Application loader

load.js script located at ${SDK_INSTALL_PATH}/tools/ccs_load/{soc} is useful for loading and running applications across multiple CPUs in one step.

Usage

  1. Search and modify below mentioned variables in the script file before loading. These are used to construct path to the example .out file when the example is built via makefiles. Alternatively, can you give absolute paths to the example .out of interest.

    Variables Description
    ${SDK_INSTALL_PATH}/tools/ccs_load/am263x/load.js
    sdkPath Points to the absolute path of the SDK. On Windows, make sure to use / as path separator.
    runAfterLoad set to true or false, depending on if want to run the application after loading.
    examplePath Relative example path from sdkPath above, e.g. examples/drivers/ipc/ipc_rpmsg_echo
    exampleName Example name, e.g. ipc_rpmsg_echo
    os OS name, nortos or freertos
    profile Build profile to use, debug or release
    board Board to use. e.g. am263x-cc
  2. Launch the SOC target connection in CCS and do the SOC initialization, however DO NOT connect to any CPUs or load applications via CCS GUI. (see CCS Launch, Load and Run)
  3. Open CCS scripting console CCS Tool Bar > View > Scripting Console and do below,
     js:> loadJSFile "C:/ti/mcu_plus_sdk/tools/ccs_load/am263x/load.js"
    
    • NOTE replace C:/ti/mcu_plus_sdk with the absolute path to where the SDK is installed.
  4. After successful execution you should see a log like below. Example used here is "ipc_rpmsg_echo"
     js:> loadJSFile "C:/ti/mcu_plus_sdk/tools/ccs_load/am263x/load.js"
     Connecting, halting, reseting ...
     [r5fss0-0] Loading ... C:/ti/mcu_plus_sdk/examples/drivers/ipc/ipc_rpmsg_echo/am263x-cc/r5fss0-0_freertos/ti-arm-clang/ipc_rpmsg_echo.debug.out
     [r5fss0-1] Loading ... C:/ti/mcu_plus_sdk/examples/drivers/ipc/ipc_rpmsg_echo/am263x-cc/r5fss0-1_nortos/ti-arm-clang/ipc_rpmsg_echo.debug.out
     [r5fss1-0] Loading ... C:/ti/mcu_plus_sdk/examples/drivers/ipc/ipc_rpmsg_echo/am263x-cc/r5fss1-0_nortos/ti-arm-clang/ipc_rpmsg_echo.debug.out
     [r5fss1-1] Loading ... C:/ti/mcu_plus_sdk/examples/drivers/ipc/ipc_rpmsg_echo/am263x-cc/r5fss1-1_nortos/ti-arm-clang/ipc_rpmsg_echo.debug.out
     [m4fss0-0] Skipping load, C:/ti/mcu_plus_sdk/examples/drivers/ipc/ipc_rpmsg_echo/am263x-cc/m4fss0-0_nortos/ti-arm-clang/ipc_rpmsg_echo.debug.out file NOT FOUND ...
     [r5fss0-1] Running ...
     [r5fss1-0] Running ...
     [r5fss1-1] Running ...
     [r5fss0-0] Running ...
     All DONE !!!
    
  5. Please note that if a .out is not found, that CPU is skipped over with a information message on the console.
  6. If any of the logs in step 4 show "fail" or "error" messages then check your EVM, CCS, SDK setup, executable path and try again.
  7. To reload without power cycle, repeat step 3 onwards.
  8. See also description at the top of this file load.js for detailed instructions