Re: Newb Question
Peter Stuge <[email protected]> Sat, 29 Jan 2011 19:19:03 +0100
| Newsgroups | gmane.comp.hardware.microcontrollers.gnupic |
|---|---|
| Message-ID | <[email protected]> |
Keith Vance wrote: > So I use gpasm to compile my application that will run on the PIC? Not compile, assemble (translate to machine code), into one object file for each source file. > How do I get the application on the PIC? For Mac OS I believe pk2cmd will work with the PICKit2. pk2cmd is a simple command line tool to program a hex file. > And then what do I use gplink for? It's used to link several objects into one final binary. However, a common file format is actually hex as mentioned above, which is a text file that describes the bits that should be written into the program memory in the PIC. //Peter