Fixed repeat function with LIRC

This commit is contained in:
Klaus Schmidinger 2001-07-27 10:18:57 +02:00
parent 7107140cbe
commit 8c28b9f74a
3 changed files with 10 additions and 4 deletions

View File

@ -94,3 +94,6 @@ Andre Valentin <av2000@topmail.de>
Jørgen Tvedt <pjtvedt@online.no>
for translating the OSD texts to the Norwegian language
Stefan Huelswitt <huels@iname.com>
for fixing the repeat function with LIRC

View File

@ -577,3 +577,4 @@ Video Disk Recorder Revision History
systems with the KURT/utime-patch (thanks to Guido Fiala).
- Changed the check whether the driver is loaded in runvdr to check for the
'dvb' module (the last one loaded).
- Fixed repeat function with LIRC (thanks to Stefan Huelswitt).

View File

@ -6,7 +6,7 @@
*
* Ported to LIRC by Carsten Koch <Carsten.Koch@icem.de> 2000-06-16.
*
* $Id: remote.c 1.22 2001/07/22 14:43:45 kls Exp $
* $Id: remote.c 1.23 2001/07/27 10:17:19 kls Exp $
*/
#include "remote.h"
@ -466,9 +466,11 @@ void cRcIoLIRC::Action(void)
}
}
else if (receivedRepeat) { // all data has already been fetched, but the last one was a repeat, so let's generate a release
receivedData = receivedRelease = true;
receivedRepeat = false;
WakeUp();
if (time_ms() - LastTime > REPEATDELAY) {
receivedData = receivedRelease = true;
receivedRepeat = false;
WakeUp();
}
}
}
}