add bb bb
This commit is contained in:
+10
-4
@@ -104,11 +104,17 @@ class ChanLun():
|
||||
if klc.end_klu:
|
||||
if klc.end_klu.idx == index:
|
||||
klc_index += 1
|
||||
if klc.klc_fx_type == Chan_KLC_FX.TOP3:
|
||||
state_list.append("10")
|
||||
if klc.klc_fx_type == Chan_KLC_FX.TOP1 or klc.klc_fx_type == Chan_KLC_FX.TOP2:
|
||||
if klc.bb_out:
|
||||
state_list.append("10")
|
||||
else:
|
||||
state_list.append("00")
|
||||
#print(klc.start_time, klc.end_time, klc.klc_fx_type)
|
||||
elif klc.klc_fx_type == Chan_KLC_FX.BOTTOM3:
|
||||
state_list.append("-10")
|
||||
elif klc.klc_fx_type == Chan_KLC_FX.BOTTOM1 or klc.klc_fx_type == Chan_KLC_FX.BOTTOM2:
|
||||
if klc.bb_out:
|
||||
state_list.append("-10")
|
||||
else:
|
||||
state_list.append("00")
|
||||
#print(klc.start_time, klc.end_time, klc.klc_fx_type)
|
||||
else:
|
||||
state_list.append("00")
|
||||
|
||||
Reference in New Issue
Block a user