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 debug the ARM side and DSP side completly .....on DM6464

Hi Guys,

I wanted log messages for both DSP and ARM such as ineterce like dvsdk_2_00_00_22/codec_engine_2_23_01/packages/ti/sdo/ce all functionalitys so am able to get log message.Only node specificfunctionality am getting log messages,I am not able get log message from alg vedio and osal.

With Regadrs

Mahesh V Kalmeshwar

  • /home/mahesh/dvsdk_2_00_00_22/codec_engine_2_23_01/packages/ti/sdo/ce/utils/trace

    const Attrs FULL_TRACING = {
            localTraceMask:    "*=01234567",
            localTraceFile:    "/tmp/cearmlog.txt",
            dsp0TraceMask:     "*=01234567,ti.bios=01324567",
            dsp0TraceFile:     "/tmp/cedsp0log.txt",
            dsp0BiosFile:      "/tmp/bioslog.dat",
            traceFileFlags:    "w",
            refreshPeriod:     100,
            cmdPipeFile:       "/tmp/cecmdpipe",
            cmdAliases: [ ],
        };

    Now go to /home/mahesh/dvsdk_2_00_00_22/codec_engine_2_23_01/examples/ti/sdo/ce/examples/apps/video_copy/dualcpu/evmDM6446

    oepn ceapp.cfg

    edit

    TraceUtil.attrs = TraceUtil.SOCRATES_TRACING; this to

    TraceUtil.attrs = TraceUtil.FULL_TRACING;

    Rebuild your ARM application .

    Run on the board

    you will get the log message of DSP , ARM ,Bios in

     tmp/cearmlog.txt

    "/tmp/cedsp0log.txt

    tmp/bioslog.dat

    with regards

    Mahesh V kalmeshar