diff --git a/bridge_master.py b/bridge_master.py index 8cc6dc6..3f6a666 100644 --- a/bridge_master.py +++ b/bridge_master.py @@ -1906,7 +1906,7 @@ class routerHBP(HBSYSTEM): #print("RX:"+str(_slot['RX_TYPE'])+" TX:"+str(_slot['TX_TYPE'])+" TIME:"+str(time() - _slot['TX_TIME'])) if (_dst_slot['RX_TYPE'] == HBPF_SLT_VTERM) and (_dst_slot['TX_TYPE'] == HBPF_SLT_VTERM) and (time() - _dst_slot['TX_TIME'] > CONFIG['SYSTEMS'][_d_system]['GROUP_HANGTIME']): #Currently we send on the same slot received on - _tmp_bits = _bits # & ~(1 << 7) + _tmp_bits = _bits # & ~(1 << 7) #Assemble transmit HBP packet header _tmp_data = b''.join([_data[:15], _tmp_bits.to_bytes(1, 'big'), _data[16:20]]) _tmp_data = b''.join([_tmp_data, dmrpkt])