diff options
| -rwxr-xr-x | umtsmodem.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/umtsmodem.py b/umtsmodem.py index b1ef178..396efaf 100755 --- a/umtsmodem.py +++ b/umtsmodem.py @@ -6,7 +6,7 @@ import sys import re modem_device = "/dev/ttyACM1" -apn = "web.vodafone.de" +apn = "internet.t-mobile" # TODO: AT*EGNCI (gsm-only) # AT*EWNCI (umts-only) @@ -143,7 +143,6 @@ def log_cells(modem): print str(mcc) + "," + str(mnc) + "," + str(lac) + "," + str(cid) cells.update(current_cells) time.sleep(2) - print "foo" except KeyboardInterrupt: break |
