Loading the binary file using JTAG

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hi All,

I am using wiced eclipse.I can able to compile the source code and flash it successfully.After download success a binary file is created.

Now I want to load this binary file into the board directly using JTAG with the help of STM32-ST Link utility.When I flashed the code I just compared the binary file present in the device and the binary file that want to load.Its displaying that the files are not same.

Can anyone help me regarding this issue.

0 Likes
1 Solution
VinayakS_26
Moderator
Moderator
Moderator
100 replies posted 50 replies posted 25 replies posted

Analyse the objdump of the two binaries using the following command

objdump -b binary -D file.bin

for x86-64 one needs to specify the architecture as -m i386:x86-64

View solution in original post

0 Likes
1 Reply
VinayakS_26
Moderator
Moderator
Moderator
100 replies posted 50 replies posted 25 replies posted

Analyse the objdump of the two binaries using the following command

objdump -b binary -D file.bin

for x86-64 one needs to specify the architecture as -m i386:x86-64

0 Likes