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/TMS570LS0432: software upgrading methods

Part Number: TMS570LS0432


Tool/software: Code Composer Studio

Hi , 

I have one question 

How to upgrade tms570 software over CAN network or any other communication ?

what are different method that are commonly used to upgrade (reprogram ) the controller when it is inside big system ?

Thank you .

  • Hi Indrajit,

    You can use CAN bootlader or UART bootloader. A bootloader is a program that runs in the microcontroller to be programmed. It receives new program information externally via some communication means and writes that information to the program memory of the MCU.

    The bootloader always runs from reset. It tries to communicate with the host. If the host responds, then it either tells the bootloader it has nothing new, or sends it new code. As the new code arrives, the old code is overwritten.

    You can find our example code for CAN bootloader, UART bootloader, Ethernet bootloader, and SPI bootloader from ti.com

    This is the link for UART bootloader:
    www.ti.com/.../spna190.pdf
  • Thank you Wang . 

    Now I have clear idea of firmware upgrade . 

    I will go through the link and document you have provided . 

    Thank you .