From c637ca99dc00fb37a7a0adcefc1e4732d4cdd3aa Mon Sep 17 00:00:00 2001 From: CoolAcid Date: Thu, 25 Jan 2018 18:17:04 -0500 Subject: [PATCH] TS for playback.py is not off by one --- playback_config_SAMPLE.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playback_config_SAMPLE.py b/playback_config_SAMPLE.py index ddccc35..e1af8e1 100755 --- a/playback_config_SAMPLE.py +++ b/playback_config_SAMPLE.py @@ -11,8 +11,8 @@ TGID = 12345 # TIMESLOT TO LISTEN FOR GROUP VOICE AND REPEAT # This is a tuple of timeslots to listen to. Note, if there's only # one, you still have to use the parenthesis and comma. Just -# deal with it, or make it better. TS1 = 0, TS2 = 1. -GROUP_TS = (1,) +# deal with it, or make it better. TS1 = 1, TS2 = 2. +GROUP_TS = (2,) # ALTERNATE SOURCE SUBSCRIBER ID FOR REPEATED TRANSMISSION # Some folks have radios that don't respond to their own subscriber # IDs. Some just don't want to have the playback come from the same @@ -31,5 +31,5 @@ SUB = 12345 # TIMESLOT TO LISTEN FOR PRIVATE VOICE AND REPEAT # This is a tuple of timeslots to listen to. Note, if there's only # one, you still have to use the parenthesis and comma. Just -# deal with it, or make it better. TS1 = 0, TS2 = 1. -PRIVATE_TS = (0,1) +# deal with it, or make it better. TS1 = 1, TS2 = 2. +PRIVATE_TS = (1,2)