View previous topic :: View next topic |
Author |
Message |
dahli.llama
Joined: 26 May 2005 Posts: 5
|
CCS C and SlickEdit |
Posted: Tue Jul 19, 2005 12:05 pm |
|
|
I am currently using SlickEdit do write my code and I'd like to be able to compile with CCS C from inside SlickEdit, but I can't seem to figure out how to get it working properly. Does anyone have any suggestions?
Any help would be great. |
|
|
treitmey
Joined: 23 Jan 2004 Posts: 1094 Location: Appleton,WI USA
|
|
Posted: Tue Jul 19, 2005 1:18 pm |
|
|
I do the same from Ultra-edit
in the ccsc.chm help file, look up "command line"
to run the ICD I use
icd -T"%p%n.hex"
To compile I use
ccsc +FH +DF +P2 "%f"
%f is file name
%n is name without extension
%p is path
In ultra-edit I see a note that says ..
NOTE - If the %f, %p, %n, %e are lower case the filenames are passed as long filenames and should be put in quotes, i.e. "%f" or "%p%n" etc. If the %F, %P, %N, %E are in upper case the filename and path will converted and passed as the "8.3" short filename specification for maximum compatibility with DOS programs.
this could be related to your problem.
ALSO NOTE ON ICD DO NOT PUT A SPACE AFTER THE -T |
|
|
PICoHolic
Joined: 04 Jan 2005 Posts: 224
|
|
|
|