We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I have an application where a STR912 is connected to a PIC device. The two devices communicate using CAN.
I want to download the PIC's firmware using the STR912. For this purpose, I have to link this firmware in the STR912 code. The firmware is an object file (but I don't think it is comtable with Keils obj files, a hex file (intel hex) or a binary file.
How can I link such a file on a specific address ?
Thanks.
Luc
I have done a project something similar to yours. The board contain a ARM7 uController and FPGA( Xilinx Spartan 3E). The FPGA is programmed by the uController at boot up. FPGA is brought into the configuration mode just by some GPIO condition, and the FPGA hex file is written in FPGA byte by byte. After dumping all bytes into FPGA, it get configured. The FPGA hex file is stored in uController firmware just as array of data or as a file.
I guess you can also also store the hex/bin file of the PIC device in the firmware as an array or file and at boot time you can provide the data to the pic as it is normally programmed.
Hope this clue will help you. If any doubt feel free to share it with me. Thanks.