From: "David Härdeman" <david@hardeman.nu>
To: tvboxspy@gmail.com
Cc: linux-media@vger.kernel.org
Subject: lmedm04 NEC scancode question
Date: Fri, 28 Mar 2014 01:38:47 +0100 [thread overview]
Message-ID: <20140328003847.GA23351@hardeman.nu> (raw)
Hi Malcolm,
I'm trying to make sure that the extended NEC parsing is consistent
across drivers and I have a question regarding
drivers/media/usb/dvb-usb-v2/lmedm04.c
In commit 616a4b83 you changed the scancode from something like this:
ibuf[2] << 24 | ibuf[3] << 16 | ibuf[4] << 8 | ibuf[5]
into:
if ((ibuf[4] + ibuf[5]) == 0xff) {
key = ibuf[5];
key += (ibuf[3] > 0)
? (ibuf[3] ^ 0xff) << 8 : 0;
key += (ibuf[2] ^ 0xff) << 16;
which can be written as:
(ibuf[2] ^ 0xff) << 16 |
(ibuf[3] > 0) ? (ibuf[3] ^ 0xff) << 8 : 0 |
ibuf[5]
At the same time the keymap was changed from (one example from each
type):
0xef12ba45 = KEY_0
0xff40ea15 = KEY_0
0xff00e31c = KEY_0
into:
0x10ed45 = KEY_0 (0x10ed = ~0xef12; 0x45 = ~0xba)
0xbf15 = KEY_0 (0xbf = 0x00bf = ~0xff40; 0x15 = ~0xea)
0x1c = KEY_0 (0x1c = 0x001c; this is a NEC16 coding?)
I am assuming (given the ^ 0xff) that the hardware sends inverted bytes?
And that the reason ibuf[5] does not need ^ 0xff is that it already is
the inverted command (i.e. ibuf[5] == ~ibuf[4]).
To put it differently:
ibuf[2] = ~addr = not_addr;
ibuf[3] = ~not_addr = addr;
ibuf[4] = ~cmd = not_cmd;
ibuf[5] = ~not_cmd = cmd;
And the scancode can then be understood as:
addr << 16 | not_addr << 8 | cmd
Except for when addr = 0x00 in which case the scancode is simply NEC16:
0x00 << 8 | cmd
Is my interpretation correct?
--
David Härdeman
next reply other threads:[~2014-03-28 0:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-28 0:38 David Härdeman [this message]
2014-03-30 18:18 ` lmedm04 NEC scancode question Malcolm Priestley
2014-03-30 20:59 ` David Härdeman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140328003847.GA23351@hardeman.nu \
--to=david@hardeman.nu \
--cc=linux-media@vger.kernel.org \
--cc=tvboxspy@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.