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.

CCS/AWR1642BOOST: [C674X_0] {module#35}: line 414: error {id:0x130000, args:[0x81b6d0, 0x0]}

Part Number: AWR1642BOOST

Tool/software: Code Composer Studio

Hello,

I just want to figure out, what is the meaning of this failure:

[C674X_0] {module#35}: line 414: error {id:0x130000, args:[0x81b6d0, 0x0]}

I tried with this configuration, but my program does not fit in the memory anymore.

var Text = xdc.useModule('xdc.runtime.Text');
Text.isLoaded = true; 

Thank you,

Cédric

  • What is the change you made in the application or the device configuration (profile_2d.cfg)?
    My guess with this error line that DSS (dss_main.c: line#414) is receiving ESM or CPU fault async-event message from RadarSS. And further DSS goes into ASSERT.

    Could you check mailbox memory at this error event? [0x50606000] from DSS connection and check if [0x50606010] address has value of 0x1002 or 0x01003. If it has value as mentioned above then send us the snapshot of this memory so that we can check in detail.


    Regards,
    Jitendra
  • Hello Jitendra,

    thank you for the quick answer.

    I use the code from the vitalsigns Gui. I am trying to run an algorithm in a separate task.

    Profile changes:

    channelCfg 1 3 0 instead of channelCfg

    profileCfg 0 77 7 6 57 0 0 70 1 200 4000 0 0 48 instead of profileCfg 0 77 7 6 57 0 0 70 1 100 2000 0 0 40 -> 2 times more samples for each chirp

    Event Memory:

    I dont understand how to do it.

    Further Analyse:

    Could it be a stack overflow, when Hwi_Enable() is called? If it is schould I increase the size of my stack?

    Regards,

    Cédric

  • Hi Cédric,

    Could you provide memory dump as I have requested in my last reply?

    With that memory address value, we can confirm if this error is generated due to RadarSS fault. 

    Increasing the sample size will effect the memory allocation as well which is required to store the FFT results, you need to calculate those as well. By default mmw demo takes care of this calculation (dss_data_path.c: MmwDemo_dataPathConfigBuffers())

    Regards,

    Jitendra