rcvd-py

Python 3 port of RCVD project
git clone git://git.luxferre.top/rcvd-py.git
Log | Files | Refs | README

commit 09790b896fbf8c4eea4e7175db3733b75c5d0ca4
parent b335d8fcdd31e36f22294609af5c61251601d083
Author: Luxferre <lux@ferre>
Date:   Sun,  8 Dec 2024 12:58:39 +0200

Implemented ABL-100WE support

Diffstat:
MREADME | 5++++-
Mrcvd.py | 3++-
2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/README b/README @@ -64,9 +64,12 @@ and nothing else. The following models were directly tested with both (JS and Python) versions: 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: 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 let me know at https://matrix.to/#/@luxferre:hackliberty.org and I'll mark it diff --git a/rcvd.py b/rcvd.py @@ -92,7 +92,8 @@ def precycle_prop_list(model: str): # full property list for primary targets, GW-B/GMW-B models 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]] - 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]] elif (model.find('B2100') > 5 or model.find('B001') > 5 \ or model.find('DW-B5600') > 5 or model.find('GST-B') > 5 \