I am using the MSP430FR6989 LaunchPad with ez-FET Rev 1.2.Can i use the onboard eZ-FET circuitry as flash programmer for downloading hex files for Production PCBs.
I use the Code Composer Studio.
Please Guide..
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.
I am using the MSP430FR6989 LaunchPad with ez-FET Rev 1.2.Can i use the onboard eZ-FET circuitry as flash programmer for downloading hex files for Production PCBs.
I use the Code Composer Studio.
Please Guide..
Dear Punit,
I have done a similar job by writing my own bootstrap loader. Let me explain. A small program is flashed to the new MSP devices at the very beginnig. This little program is like a terminal program for RS232 communication. During first run of the application board a known memory address is checked. Then depending on the value, the bootstrapper starts. It receives the memory address and followed by 16 data bytes. These date are stored in RAM of MSP and after a block is received, the data are flashed to the program code area of MSP flash. I also used a handshake code (CR LF) during communication. After all data were transferred and programmed to flash, the well known data at well known memory address are coded, so that the check at the next program start directly branches to the main program.
I hope you understand what I have written.
Benefits: With a jump or call from the main program later you can download a new code whenever you like, as often you like. ... as Long as the bootstrap loader is not overwritten.
Disadvantage: You have to program your bootstrapper and UART (or other interface) has to be used.
More detail: Use Info memory for the "known memory address with the well known data".
Happy coding!
Bernd
Punit Chauhan said:... then is it possible only via the CCS ...
Actually CCS is not capable of downloading a hex file. It cannot even generate the hex file. You have to use a Utility program to convert the object file generated by CCS into hex format.
**Attention** This is a public forum