fix missing csbk from last commit
This commit is contained in:
parent
8d80600f43
commit
f7c68a1f54
@ -578,8 +578,12 @@ class routerOBP(OPENBRIDGE):
|
|||||||
self.group_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
self.group_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
||||||
elif _call_type == 'unit':
|
elif _call_type == 'unit':
|
||||||
self.unit_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
self.unit_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
||||||
elif _call_type == 'vscsbk':
|
elif _call_type == 'vcsbk':
|
||||||
|
# Route CSBK packets to destination TG. Necessary for group data to work with GPS/Data decoder.
|
||||||
logger.debug('CSBK recieved, but HBlink does not process them currently')
|
logger.debug('CSBK recieved, but HBlink does not process them currently')
|
||||||
|
self.group_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
||||||
|
logger.debug('CSBK recieved, but HBlink does not process them currently. Packets routed to talkgroup.')
|
||||||
|
|
||||||
else:
|
else:
|
||||||
logger.error('Unknown call type recieved -- not processed')
|
logger.error('Unknown call type recieved -- not processed')
|
||||||
|
|
||||||
@ -1054,7 +1058,10 @@ class routerHBP(HBSYSTEM):
|
|||||||
else:
|
else:
|
||||||
self.unit_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
self.unit_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
||||||
elif _call_type == 'vcsbk':
|
elif _call_type == 'vcsbk':
|
||||||
|
# Route CSBK packets to destination TG. Necessary for group data to work with GPS/Data decoder.
|
||||||
logger.debug('CSBK recieved, but HBlink does not process them currently')
|
logger.debug('CSBK recieved, but HBlink does not process them currently')
|
||||||
|
self.group_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _frame_type, _dtype_vseq, _stream_id, _data)
|
||||||
|
logger.debug('CSBK recieved, but HBlink does not process them currently. Packets routed to talkgroup.')
|
||||||
else:
|
else:
|
||||||
logger.error('Unknown call type recieved -- not processed')
|
logger.error('Unknown call type recieved -- not processed')
|
||||||
|
|
||||||
|
@ -58,6 +58,9 @@ The amount of time to keep sending private calls to a system before flooding aga
|
|||||||
'''
|
'''
|
||||||
UNIT_TIME = 15
|
UNIT_TIME = 15
|
||||||
|
|
||||||
|
'''
|
||||||
|
'''
|
||||||
|
#UNIT_STATIC = {b'0\x1e\xb7': ('HOTSPOT', 1924991999)}
|
||||||
'''
|
'''
|
||||||
This is for testing the syntax of the file. It won't eliminate all errors, but running this file
|
This is for testing the syntax of the file. It won't eliminate all errors, but running this file
|
||||||
like it were a Python program itself will tell you if the syntax is correct!
|
like it were a Python program itself will tell you if the syntax is correct!
|
||||||
|
Loading…
Reference in New Issue
Block a user