I'm trying to load a program to my device (TMS320F28069M) via the serial flash programmer (following this guide: www.ti.com/.../sprabv4a.pdf ).
When I run it the following way, it works, but takes about 10-20 minutes to upload:
serial_flash_programmer.exe -d f2806x -k f28069_flash_kernel.txt -a proj_lab09.txt -p COM8 -w -v
The documentation says that if I don't explicitly set the baud rate, it defaults to 9600, and that is pretty slow, so I figured I'd increase it:
serial_flash_programmer.exe -d f2806x -k f28069_flash_kernel.txt -a proj_lab09.txt -p COM8 -b 115200 -w -v
And it stops working at all. It gets stuck at "Downloading proj_lab09.txt to device...", but the LEDs that light up when I don't explicitly set the baud rate do not light up any more, and it doesn't get to the "Kernel Loaded" message which appears relatively quickly otherwise. After then I tried doing that with all different baud rates that I could think of: 9600, 38400, 57600... Nothing works.
So the question is, why doesn't it work, and how do I make the upload faster?