Pic has bootloader programmed in, and circuit is wired for max232 cable.
- Write your code
- compile
- load .hex file into bootloader software
- plug max232 cable into pic circuit
- reset the pic and send .hex file
- Voila!
Your program or compiler will need to be modified to accomodate a bootloader. If you are using the Jalpack you can add the line pragma bootloader long_start to your header to tell the compiler to add a long start command to the beginning of the code. This jumps to the bootloader at the end of the memory first and allows the bootloader to look for a computer to communicate with.Berts starter pack is already set up to do that so no change is needed.