[chirp_devel] [PATCH 0 of 1] yaesu: match model on ID and length. #93
# HG changeset patch # User Tom Hayward tom@tomh.us # Date 1346876708 21600 # Node ID af2ac251e4f11e69de7297f2667c75670ba5d58c # Parent 399056e3b5df7308907dd83a3425d62967c0a168 yaesu: match model on ID and length. #93
diff -r 399056e3b5df -r af2ac251e4f1 chirp/yaesu_clone.py --- a/chirp/yaesu_clone.py Tue Sep 04 18:06:13 2012 -0600 +++ b/chirp/yaesu_clone.py Wed Sep 05 14:25:08 2012 -0600 @@ -206,7 +206,7 @@
@classmethod def match_model(cls, filedata, filename): - return filedata[:5] == cls._model + return filedata[:5] == cls._model and len(filedata) == cls._memsize
def _wipe_memory_banks(self, mem): """Remove @mem from all the banks it is currently in"""
Will this work for all Yaesus?
The tests pass, so I'd say... yep :)
Shoot me a test image and I'll include that in the tree.
All your pending patches are pushed. Thanks!
participants (2)
-
Dan Smith
-
Tom Hayward