debugging, don't use

This commit is contained in:
Cort Buffington 2015-08-12 09:07:49 -05:00
parent 7259f16ec0
commit 03f80f900d
1 changed files with 4 additions and 3 deletions

View File

@ -75,11 +75,12 @@ class playIPSC(IPSC):
# re-Write the peer radio ID to that of this program
_tmp_data = _tmp_data.replace(_peerid, NETWORK[_network]['LOCAL']['RADIO_ID'])
# re-Write the source subscriber ID to that of this program
#_tmp_data = _tmp_data.replace(_src_sub, NETWORK[_network]['LOCAL']['RADIO_ID'])
_tmp_data = _tmp_data.replace(_src_sub, NETWORK[_network]['LOCAL']['RADIO_ID'])
# Re-Write IPSC timeslot value
'''
_call_info = int_id(_data[17:18])
if _ts == 0:
_call_info &= ~(1 << 5)
@ -87,7 +88,7 @@ class playIPSC(IPSC):
_call_info |= 1 << 5
_call_info = chr(_call_info)
_tmp_data = _tmp_data[:17] + _call_info + _tmp_data[18:]
'''
# Re-Write DMR timeslot value
# Determine if the slot is present, so we can translate if need be
'''