Implemented ABL-100WE support

This commit is contained in:
Luxferre
2024-12-08 12:58:39 +02:00
parent b335d8fcdd
commit 09790b896f
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -64,9 +64,12 @@ and nothing else.
The following models were directly tested with both (JS and Python) versions: The following models were directly tested with both (JS and Python) versions:
GW-B5600, GMW-B5000, OCW-T200, GM-B2100, DW-B5600, GA-B001. GW-B5600, GMW-B5000, OCW-T200, GM-B2100, DW-B5600, GA-B001.
The following models were directly tested with the Python version:
ABL-100.
The following models are theoretically supported too but not directly tested: The following models are theoretically supported too but not directly tested:
MRG-B5000, GWR-B1000, GA-B2100, GST-B400, GST-B500, ECB-S100, MSG-B100, MRG-B5000, GWR-B1000, GA-B2100, GST-B400, GST-B500, ECB-S100, MSG-B100,
ECB-2000, ECB-2200, G-B001, TRN-50. ECB-2000, ECB-2200, G-B001, TRN-50, GD-B500.
If RCVD works with one of the above models (or with some other ones), please If RCVD works with one of the above models (or with some other ones), please
let me know at https://matrix.to/#/@luxferre:hackliberty.org and I'll mark it let me know at https://matrix.to/#/@luxferre:hackliberty.org and I'll mark it
Regular → Executable
+2 -1
View File
@@ -92,7 +92,8 @@ def precycle_prop_list(model: str):
# full property list for primary targets, GW-B/GMW-B models # full property list for primary targets, GW-B/GMW-B models
props = [[30,0], [30,1], [30,2], [30,3], [30,4], [30,5], props = [[30,0], [30,1], [30,2], [30,3], [30,4], [30,5],
[31,0], [31,1], [31,2], [31,3], [31,4], [31,5]] [31,0], [31,1], [31,2], [31,3], [31,4], [31,5]]
if model.find('OCW') > 5 or model.find('GWR-B1000') > 5: if model.find('OCW') > 5 or model.find('GWR-B1000') > 5 \
or model.find('ABL-100') > 5 or model.find('GD-B500') > 5:
props = [[30,0], [30,1]] props = [[30,0], [30,1]]
elif (model.find('B2100') > 5 or model.find('B001') > 5 \ elif (model.find('B2100') > 5 or model.find('B001') > 5 \
or model.find('DW-B5600') > 5 or model.find('GST-B') > 5 \ or model.find('DW-B5600') > 5 or model.find('GST-B') > 5 \