From 440f3d61b40e15d30258ab296852f2af6343249a Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sun, 28 Jul 2013 22:25:25 -0500 Subject: [PATCH] Updated config data structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … so it matches changes made in the last update a few minutes ago. --- my_ipsc_config_SAMPLE.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/my_ipsc_config_SAMPLE.py b/my_ipsc_config_SAMPLE.py index 8acfd6e..7501ef0 100644 --- a/my_ipsc_config_SAMPLE.py +++ b/my_ipsc_config_SAMPLE.py @@ -2,7 +2,11 @@ NETWORK = { 'IPSC1': { 'LOCAL': { - 'MODE': b'\x6A', + 'MODE': b'\x6A', # Decoded values below + 'PEER_OPER': True, + 'PEER_MODE': 'DIGITAL', + 'TS1_LINK': True, + 'TS2_LINK': True, 'FLAGS': b'\x00\x00\x00\x14', 'PORT': 50001, 'NUM_PEERS': 0, @@ -20,6 +24,10 @@ NETWORK = { 'PORT': 50000, 'RADIO_ID': b'\x00\x00\x00\x00', 'MODE': b'\x00', + 'PEER_OPER': False, + 'PEER_MODE': '', + 'TS1_LINK': False, + 'TS2_LINK': False, 'FLAGS': b'\x00\x00\x00\x00', 'STATUS': { 'CONNECTED': False,