We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I want to run a batch to do something to my hex file after a build, so I specify that batch file as "User Program #1" in the project settings. But I don't want to give it an absolute path, because it should be portable and work no matter what my working directory is. However, if I just type the name of the batch file I get an error saying it can't execute that .bat file. Is there some way to make uVision execute files in the same directory that the project is in without specifying an absolute path? Thanks!
ah, I figured it out. Previously, I had an absolute path to the batch file. When I originally specified the file, uVision put "" marks around the whole path. Then when I changed it to just the batch file name (no path) I deleted the first " but neglected to delete the second " ... as soon as I deleted the second " it all worked fine. Thanks for the suggestions ;-)