Re: [vdr] in-kernel lirc and devinput

2012-10-20 Thread Jouni Karvo

Thanks for the suggestions.

On 18.10.2012 00:05, Tony Houghton wrote:
I prefer inputlirc to the original lirc. If you configure it to start 
at boot and grab the input device it should stop X or whatever from 
interpreting it as key presses.


It seems easy, but when I moved to inputlirc, now I have the number keys 
but not the menu key and a few other keys.  They come on a separate 
event interface.


I disabled both in hal and in Xorg both these iMON things, but it did 
not help.  The inputlirc config:


# Options to be passed to inputlirc.
EVENTS=/dev/input/by-id/usb-15c2_0036-event*
OPTIONS=-g -c -m 0 -d/dev/lircd

yours,
Jouni

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] in-kernel lirc and devinput

2012-10-20 Thread Tony Houghton
On Sat, 20 Oct 2012 14:10:53 +0300
Jouni Karvo jouni.ka...@iki.fi wrote:

 Thanks for the suggestions.
 
 On 18.10.2012 00:05, Tony Houghton wrote:
  I prefer inputlirc to the original lirc. If you configure it to start 
  at boot and grab the input device it should stop X or whatever from 
  interpreting it as key presses.
 
 It seems easy, but when I moved to inputlirc, now I have the number keys 
 but not the menu key and a few other keys.  They come on a separate 
 event interface.
 
 I disabled both in hal and in Xorg both these iMON things, but it did 
 not help.  The inputlirc config:
 
 # Options to be passed to inputlirc.
 EVENTS=/dev/input/by-id/usb-15c2_0036-event*
 OPTIONS=-g -c -m 0 -d/dev/lircd

Strange. FWIW I used to use the Hauppauge grey remote, but I replaced
that card and none of my other receivers came with suitable remotes (not
enough buttons etc) so I bought an HP MCE remote and cheap generic MCE
receiver bundle from eBay. It's certainly an improvement on the
Hauppauge, but it has one key that doesn't work, an Enter key near the
bottom (not the main OK key).

I tested it with inputlirc and lirc and it produced the same codes in
both. As inputlirc is simpler and seemed to have a better default
auto-repeat delay I stuck with that.

My inputlirc config is:

EVENTS=
OPTIONS='-g -n Media*'

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


[vdr] [PATCH] correct some includes at plugins

2012-10-20 Thread Lars Hanisch
Hi,

Plugins should use

#include vdr/...

 and not

#include vdr/...

Regards,
Lars.
diff --git a/PLUGINS/src/dvbhddevice/dvbhdffdevice.h b/PLUGINS/src/dvbhddevice/dvbhdffdevice.h
index 439ec9b..10882ae 100644
--- a/PLUGINS/src/dvbhddevice/dvbhdffdevice.h
+++ b/PLUGINS/src/dvbhddevice/dvbhdffdevice.h
@@ -10,8 +10,8 @@
 #define __DVBHDFFDEVICE_H
 
 #include hdffcmd.h
-#include vdr/dvbdevice.h
-#include vdr/dvbspu.h
+#include vdr/dvbdevice.h
+#include vdr/dvbspu.h
 
 /// The cDvbHdFfDevice implements a DVB device which can be accessed through the Linux DVB driver API.
 
diff --git a/PLUGINS/src/dvbsddevice/dvbsdffdevice.h b/PLUGINS/src/dvbsddevice/dvbsdffdevice.h
index bd74cde..eff1511 100644
--- a/PLUGINS/src/dvbsddevice/dvbsdffdevice.h
+++ b/PLUGINS/src/dvbsddevice/dvbsdffdevice.h
@@ -9,8 +9,8 @@
 #ifndef __DVBSDFFDEVICE_H
 #define __DVBSDFFDEVICE_H
 
-#include vdr/dvbdevice.h
-#include vdr/dvbspu.h
+#include vdr/dvbdevice.h
+#include vdr/dvbspu.h
 
 /// The cDvbSdFfDevice implements a DVB device which can be accessed through the Linux DVB driver API.
 
diff --git a/PLUGINS/src/dvbsddevice/dvbsdffosd.h b/PLUGINS/src/dvbsddevice/dvbsdffosd.h
index 8a1bc62..762cc8a 100644
--- a/PLUGINS/src/dvbsddevice/dvbsdffosd.h
+++ b/PLUGINS/src/dvbsddevice/dvbsdffosd.h
@@ -9,7 +9,7 @@
 #ifndef __DVBSDFFODF_H
 #define __DVBSDFFODF_H
 
-#include vdr/osd.h
+#include vdr/osd.h
 
 class cDvbOsdProvider : public cOsdProvider {
 private:
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr