From 3fc0bdc63d52b10f5ccbcb40661535c1070ed32e Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 26 Jan 2018 07:49:35 -0600 Subject: [PATCH] Update playback_config_SAMPLE.py --- 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)