How to make a FW image as exe files?

How to combine firmware images(spk file) into exe files that allow users to burn in the win environment?

You can download spk.cwe to module by FDT which can be downloaded here in https://downloads.sierrawireless.com/tools/swiflash/swiflash.zip

e.g
fdt2.exe -f C:\Users\jyi\Desktop\yocto.cwe

You can also create a batch file like this:

cd %~dp0
fdt2.exe xxx.spk

Please note that the batch file has to be run in admin mode!

1 Like

Thanks , it’s work for me.