|
|
|
|
@ -884,6 +884,7 @@ class tmc_message:
|
|
|
|
|
tmc_F=int((tmc_x>>3)&0x1) #identifies the message as a Single Group (F = 1) or Multi Group (F = 0) |
|
|
|
|
self.is_single=(tmc_F==1) |
|
|
|
|
self.is_multi=(tmc_F==0) |
|
|
|
|
|
|
|
|
|
#check LTN |
|
|
|
|
try: |
|
|
|
|
msg_ltn=ltn#tableobj.RDS_data[PI]["AID_list"][52550]["LTN"] |
|
|
|
|
@ -912,6 +913,7 @@ class tmc_message:
|
|
|
|
|
self.ci=int(tmc_x&0x7) #continuity index |
|
|
|
|
self.data_arr=BitArray() |
|
|
|
|
self.mgm_list=[] |
|
|
|
|
self.length=0 |
|
|
|
|
self.location=tmc_location(tmc_z,tableobj) |
|
|
|
|
#self.event=int(tmc_y&0x7ff) #Y10-Y0 |
|
|
|
|
self.event=tmc_event(int(tmc_y&0x7ff),self.tableobj) #Y10-Y0 |
|
|
|
|
|