Telos B port is now working, and the CC2420 driver is coming together.
[goodfet] / client / goodfet.sc
1 #!/usr/bin/env python
2
3 import sys;
4 import binascii;
5
6 from GoodFETSmartCard import GoodFETSmartCard;
7 from intelhex import IntelHex16bit, IntelHex;
8
9 #Initialize FET and set baud rate
10 client=GoodFETSmartCard();
11 client.serInit()
12
13 #Connect to target
14 client.start();