aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Young <sean@mess.org>2018-10-04 20:17:25 +0100
committerSean Young <sean@mess.org>2018-10-04 20:17:33 +0100
commitaca008e8b4112ac7f41987b6f40ffb118a39c528 (patch)
treedd803b0dd8dc1ca5dcc27d4d29108280bab7bc28
parentc926790d303bdf85c0b829e89a05ba40e9e795fd (diff)
gen_keytables.pl: fix NEC32 generation
nec32 is nec protocol but nec32 variant. Signed-off-by: Sean Young <sean@mess.org>
-rwxr-xr-xutils/keytable/gen_keytables.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/keytable/gen_keytables.pl b/utils/keytable/gen_keytables.pl
index fbb0db71..4124e366 100755
--- a/utils/keytable/gen_keytables.pl
+++ b/utils/keytable/gen_keytables.pl
@@ -122,6 +122,9 @@ sub parse_file($$)
# NECX protocol variant uses nec decoder
$type =~ s/^NECX$/NEC/;
+
+ # NEC32 protocol variant uses nec decoder
+ $type =~ s/^NEC32$/NEC/;
$type = lc $type;
}
next;

Privacy Policy