Nope.. seems to work fine.

But I did find/fix one bug, that was preventing multiple button codes per line.. it was only taking the first one.

So, with v160, you can do:

echo "BUTTONRAW 0020df12" >/proc/empeg_notify
echo "BUTTONRAW 8020df12" >/proc/empeg_notify

and with v161 (not out yet) you can instead do:

echo "BUTTONRAW 0020df12;BUTTONRAW 8020df12" >/proc/empeg_notify


I will also add a config.ini flag in v161 to turn on ir_debug:

[hijack]
ir_debug=1

This will spew raw IR codes to the serial port, along with some internal state flags and such. You can ignore most everything except the first 8-digit value on each line (the raw press/release codes). This debug data comes straight from the Hijack IR handler.

-ml