diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2000-07-15 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2000-07-15 18:00:00 +0200 |
commit | 3b78ec8374aac8daa560fa0cd06260fca6eb1500 (patch) | |
tree | e753b7fb9304a47651926ce1db67f83127b510fb /vdr.c | |
parent | 9599a8fd8a6724e55ec4ad2ba2c975c0850073d9 (diff) | |
download | vdr-patch-lnbsharing-3b78ec8374aac8daa560fa0cd06260fca6eb1500.tar.gz vdr-patch-lnbsharing-3b78ec8374aac8daa560fa0cd06260fca6eb1500.tar.bz2 |
Version 0.06vdr-0.06
- Added support for LIRC remote control (thanks to Carsten Koch!).
There are now three different remote control modes: KBD (PC-Keyboard), RCU
and LIRC. See the INSTALL file for information on how to enable either of
these modes. The default mode is now KBD, not RCU as before (to make it
work immediately even if there is no actual remote control).
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/people/kls/vdr * - * $Id: vdr.c 1.19 2000/05/27 15:38:35 kls Exp $ + * $Id: vdr.c 1.20 2000/07/15 11:45:05 kls Exp $ */ #include <signal.h> @@ -33,7 +33,7 @@ #include "recording.h" #include "tools.h" -#ifdef DEBUG_REMOTE +#ifdef REMOTE_KBD #define KEYS_CONF "keys-pc.conf" #else #define KEYS_CONF "keys.conf" @@ -58,8 +58,10 @@ int main(int argc, char *argv[]) Channels.Load("channels.conf"); Timers.Load("timers.conf"); +#ifndef REMOTE_LIRC if (!Keys.Load(KEYS_CONF)) Interface.LearnKeys(); +#endif Interface.Init(); cChannel::SwitchTo(CurrentChannel); |