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 have been trying to load code on to my MSP-EXP430FR5739 board for a few days now. This issue began after I had been coding for a few hours with no issues and suddenly started one time when I went to debug. (in case it helps, at the time I was using IAR EW ver 6.40.1)
I have tried using 3 different computers (all with the same ver 7.10.3 IAR EW), 3 different MSP-EXP430FR5739 boards, and 3 different usb cables,uninstalling/reinstalling IAR and usb drivers and all have given the same errors. The first and most common error is "Could not find MSP-FET430UIF on specified COM port : (Initialize) , port=USB, version=0xffffffff" but it is not the only error I get. I also get "Interface Communication error : (Initialize) , port=HID0016:COM4, version=0xffffffff", "Trying to initialize target failed", and various others indicating some sort of communication error.
If I go into Project>Options> FET Debugger in the connections section of the window, I can see my board and its COM port. In Device Manager, in the HID section it is labeled as "USB Input Device", in the Ports Section it is "MSP430 Application UART (COM4)", and in the USB Section it is "USB Composite Device."
I have been able to load code on to all 3 boards using Energia and CCS, but I have a .r43 file (IAR specific) that I need, hence why I need to get IAR to work.
Also, and this may be unrelated, after looking around on the internet I think that MSP-FET430UIF is a separate tool that is used for debugging. I'm not sure if the error regarding this is just some sort of default wording but I have never used/owned this tool.
Josh Jones said:I have been able to load code on to all 3 boards using Energia and CCS, but I have a .r43 file (IAR specific) that I need, hence why I need to get IAR to work.
txt (or hex) binary can be generated from r43 file by IAR linker (command line)...
xlink file.r43 -Fmsp430_txt -o file.txt
xlink file.r43 -Fintel-standard -o file.hex
... and than txt file can be flashed by MSP-Flasher without IAR.
"*.r43" is (input file for linker) generated by IAR assembler / compiler. Linker should generate (output) "*.txt" file. If "*.txt" file already exist, erase it. Copy "xlink.exe" together with "*.r43" on dir location that you want and execute it from cmd prompt / line in Win.
**Attention** This is a public forum