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.

AWR2944: RPRC format

Part Number: AWR2944

Hello Experts,

Do you know if there is a GUI reader or parser for TI image "RPRC format"?

I am asking because in a lot of cases I need to debug on low level and I need to check what is flashed exactly.

And for some very special use case, I need to perform some hex file manipulation. Unfortunately I can't do this because TI tools take ELF as input instead of Hex files.

  • Hi Andrew,

    There is no such tool. The tool in the SDK takes the ELF and converts it to RPRC format. But we do not have tools that parses the RPRC format.

    But the SBL has the C code that does the RPRC parsing. Maybe you can use this code as reference. 

    The RPRC format itself is explained in the readme first guide in the mcu-plus-sdk package.

    Regards,

    Ajay

  • Thanks Ajay for the hint:)
    I just don't want to go through the hex file to track the headers myself since it's bit unpractical.

    I will try to convert the C code mentioned to some python script or something.