Pic

From xKyle.com - Notebook

Jump to: navigation, search

Here are the tools I use in Linux to program PIC's:

It is also more useful to have a Bootloader to install things.


sudo apt-get install picprog

Burn2pic:

#!/bin/bash
/usr/bin/picprog --device=pic16f877a --erase --burn --slow --input-hexfile=$1

Read2pic:

#!/bin/bash
/usr/bin/picprog --device=pic16f877a --output-hexfile=$1


And some sample programs:

Retrieved from "http://wiki.xkyle.com/Pic"
Personal tools