From 670d14e88094aa5230087cacc420db1381711432 Mon Sep 17 00:00:00 2001 From: travisutk Date: Wed, 31 Aug 2011 16:14:39 +0000 Subject: [PATCH] Port number instructions for Bluetooth. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1046 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/GoodFET.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/GoodFET.py b/client/GoodFET.py index 1caad81..8c5d945 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -52,7 +52,7 @@ class GoodFETbtser: """py-bluez class for emulating py-serial.""" def __init__(self,btaddr): import bluetooth; - while btaddr==None or btaddr=="none" or btaddr=="bluetooth": + if btaddr==None or btaddr=="none" or btaddr=="bluetooth": print "performing inquiry..." nearby_devices = bluetooth.discover_devices(lookup_names = True) print "found %d devices" % len(nearby_devices) @@ -60,10 +60,11 @@ class GoodFETbtser: print " %s - '%s'" % (addr, name) if name=='FireFly-A6BD': btaddr=addr; + print "Please set $GOODFET to the address of your device."; + sys.exit(); print "Identified GoodFET at %s" % btaddr; - # BlueFET doesn't run the Service Discovery Protocol. - # Instead we manually use the portnumber. + # Manually use the portnumber. port=1; print "Connecting to %s on port %i." % (btaddr, port); -- 2.20.1