Updated README to mention static DCO.
[goodfet] / firmware / README.txt
1 GoodFET Firmware
2 by Travis Goodspeed <travis at radiantmachines.com>
3 and some damned good neighbors.
4
5 Set $GOODFET to be the port of your GoodFET, such as
6 export GOODFET=/dev/cu.usbserial-*      #Darwin
7 export GOODFET=/dev/ttyUSB*             #Linux (Default)
8
9 The target board must be specified.  For example,
10 board=goodfet31 make clean install
11 board=goodfet41 make clean install
12 board=telosb make clean install
13
14 We require at least msp430-gcc-4.4.5, but older versions might work if
15 you're lucky.
16
17 For faster startup times, it helps to write a static clock
18 configuration into the firmware.  In the following example, the proper
19 DCO happens to be 0x8F8A.
20
21 pro% goodfet.monitor info
22 GoodFET with f26f MCU
23 Clocked at 0x8f8a
24 pro% board=goodfet41 CFLAGS='-DSTATICDCO=0x8f8a' make clean install