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.

How to run both cores simultaneouly in standalone on evmc6657?

Hello!

I have application for both cores c6657. I can run both cores simultaneously in debug session using group cores in CCSv5.
How to run both cores simultaneouly in standalone during booting from nand flash? I use TMDSEVMC6657.

Thank you.

  • Hi Elnur,
    Please check out our MAD utilities wiki: processors.wiki.ti.com/.../MAD_Utils_User_Guide. These utilities are designed for deploying code on multiple cores.

    Hope this helps.
  • Hi, Rajasekaran.

    Thank you for your answer, but I still did not understand how to build image in MAD utils.
    I try to build example from "Demo walkthrough". I try step 1 - "Image Preparation" (Prelinker bypass mode demo). I use command: build_example_msys.sh c6657 little static, but it is no results.
    My build_example_msys.sh file contains the following:

    #!/bin/bash

    #Build script to be invoked from BASH shell to build MAD loader example applications

    if [ "$1" == "" ] ; then
    echo "Device not specified"
    echo "Usage: $0 C6678|C6670|C6657 big|little [static|relocatable]"
    exit
    fi

    if [ "$3" == "static" ] ; then
    mode="static"
    libmode="static"
    else
    mode="relocatable"
    libmode="shared"
    fi

    export C_DIR='"C:/ti/cgt_c6000_7.4.12"'

    export PATH=$PATH:/c/ti/cgt_c6000_7.4.12/bin:$PATH

    mkdir -p bin/$1/$endian

    #Build for device $1

    make -C shlibs/build clean all DEVICE=$1 ENDIAN=$2 MODE=$libmode

    make -C app_1/build clean all DEVICE=$1 ENDIAN=$2 MODE=$mode

    make -C app_2/build clean all DEVICE=$1 ENDIAN=$2 MODE=$mode

    I use mcsdk_2_01_01_04 and windows 8.1.

    How to do step 1 - Image Preparation?

  • I have understood how to build sh-file. I must use bash.exe from MinGW\msys.
  • Hi Elnur,
    Thank you very much for the udpate.
  • Hi, Rajasekaran.

    I received such error during build build_examples_msys.sh:
    error: unrecognized cregister name DNUM
    in file printf.c.
    How does this solve?