Content originally posted in LPCWare by robert.palmer on Wed Mar 06 11:59:29 MST 2013
I am using the Mac version of LPCXpresso. In the flash tool, if you select a .axf file with spaces in the path, it allows it fine, but when you try to actually program it, an error is returned stating that the first word after the first space in the path is an invalid parameter. This implies that the tool didn't handle the space in the path and instead thought that the space was a parameter delimeter.
Normally you can escape spaces by a) using qoutes around the full path, b) using '\' before the space or c) using %20 instead of the space. I tried each of these when entering the path, but the GUI interface responds with "File blah not found"
So it appears the GUI can't handle the escaping of space but it doesn't pass the string to the command line tool correctly (i.e., it doesn't detect and escape the spaces itself).
Bottom line, I can't use the GUI tool to program flash when it's located where there is a space in the path.