Skip to content

Commit

Permalink
Fix iridium link defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
fvantienen committed Sep 11, 2016
1 parent 3af5d15 commit 05d83da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sw/tools/iridium/iridium_link.py
Expand Up @@ -13,7 +13,7 @@


DEFAULT_DEVICE = "/dev/ttyUSB0"
DEFAULT_BAUD = "115200"
DEFAULT_BAUD = "19200"
DEFAULT_NUMBER = "00881693689909"
UDP_IN = 4243
UDP_OUT = 4242
Expand Down
4 changes: 2 additions & 2 deletions sw/tools/iridium/iridium_protocol.py
Expand Up @@ -52,9 +52,9 @@ def connectionLost(self, reason):
def configure(self):
# Send the serial and echo settings
if self.serial_ctrl:
cfg_cmd = "ATE0 V1 X3 &D1 &K1"
cfg_cmd = "ATE0 V1 X3"
else:
cfg_cmd = "ATE0 V1 X3 &D0 &K0"
cfg_cmd = "ATE0 V1 X3"
if not self.transmit_cmd_ok(cfg_cmd):
if self.cb_configured != None:
self.cb_configured(False)
Expand Down

0 comments on commit 05d83da

Please sign in to comment.