We have an NXP chip (LPC1778) and we need a way to program the firmware via FTDI over USB. We are interested in a way to do this via command line on Linux. We are able to do this via flashmagic on Windows. Any advice is greatly appreciated. Thanks!
For reference we are able to program it over the serial port using this utility:
lpc21isp -wipe -control -verify -debug2 /path/to/hexfile.hex /dev/ttyS0 57600 12000
I am new to embedded programming and FTDI technology.
Utilities suggested by Clifford:
BACKGROUND
Just for those that are interested, we want to issue terminal commands to a board via serial AND program it via that same port. Our DTR and RTS pins are connected to the boards reset button and the RST is connected to the NMI. When connect using the java RXTX library it asserts those lines and we end up resetting the board which is not desired. We were hoping that if we could program using the USB port/FTDI bridge we could avoid resetting the board but it seems we would still need to use those lines to put the NXP chip into programming mode regardless so this might not be a valid solution.