full cloning one fully functional RCM4000 to a new RCM4000 Board

I wish to copy complete programme/codes etc from one fully functional RCM4000 board to a newly purchased empty RCM4000 board. Need to know which cloning product can be used and how to do it? Please help.

thanks

When at all possible, you should use a binary image generated by Dynamic C for programming new core modules. You can compile to a file from your original source code using Dynamic C.

If you absolutely need to copy the compiled program from existing hardware, you’ll need to use Dynamic C to compile a program to RAM that you can use to read firmware from flash.

The RCM4000 has an Ethernet interface, so you could use this sample (https://github.com/digidotcom/DCRabbit_10/blob/master/Samples/tcpip/http/download_flash.c) to download a copy of the entire boot flash.

You would still need to extract the firmware image from the downloaded “boot.bin”. You can use Samples/RemoteProgramUpdate/firmware_report.c to find out how big the firmware image is, and then truncate boot.bin to that size for a binary you should be able to install with the Rabbit Field Utility (RFU).

Can I contact you in private; please suggest your email or contact at mas93sam@gmail.com

Hello, we have similar situation, bought some fm transmitter this year and last months manufacturer broke. We have one RCM4000 died, but have other equipment to clone. I´m not a specialist so could you please help me with more instructions to dimskl@yahoo.com

Dear Tom,
I have similar problem with RCM4000, unfortunately I am a beginner without experience.
The problem is that I have a functional unit with the program, but I lost my bin file. Now I would need to clone the new unit from the RCM function unit.
I am with your instructions but without success. It writes a mistake.
Can you send me a more detailed procedure How to clon the unit or save the program/code?
I use Dynamic C and Rabbit Field utility software. Is there other software?

Thank you in advance for your support.
Best regards

Begi

Please try the extract_flash.c sample from the Dynamic C 10 GitHub repository:

Follow the directions in the sample to compile the program to RAM (to avoid erasing the existing flash content). It will print the firmware image or entire flash to STDOUT as base64-encoded text. You can easily decode that text to get a binary image.

I recommend using Dynamic C 10.72E (the latest release) to get the file.