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.

RTOS/CC2650EM-7ID-RD: System_printf("%s",received_string); not showing/not supported .

Part Number: CC2650EM-7ID-RD

Tool/software: TI-RTOS

Hi,

I am using    System_printf()    for debugging and it works fine for integer and direct string but when i am using function like    System_printf("%s",received_string);   not printing any thing.

  • I tested this by setting:
    var SysMin = xdc.useModule('xdc.runtime.SysMin');
    SysMin.bufSize = 128;
    System.SupportProxy = SysMin;

    in the .cfg file

    char helpstring[5] = "ABCDE";
    .
    .
    System_printf("Help: %s",helpstring);

    Then the output is:
    Help: ABCDE