summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-04-13 13:34:03 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2008-04-13 13:34:03 +0200
commit6b32797180c93af85c0a30cccc212c1df769a554 (patch)
treee3a1fc32f0a56dd828de12eb4d46a87503afa437
parent1d417431d675168fc56c2e9f8a9ea56a2768d7c7 (diff)
downloadvdr-6b32797180c93af85c0a30cccc212c1df769a554.tar.gz
vdr-6b32797180c93af85c0a30cccc212c1df769a554.tar.bz2
Increased the time between checking the CAM status to 500ms to avoid problems with some CAMs1.6.0-1
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--ci.c4
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 23d3dc44..56c38c55 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -1510,6 +1510,7 @@ Arthur Konovalov <kasjas@hot.ee>
for translating OSD texts to the Estonian language
for fixing a missing ',' in the Greek OSD texts
for fixing a missing ',' in the Swedish OSD texts
+ for reporting problems with CAMs when checking the CAM status too frequently
Milos Kapoun <m.kapoun@cra.cz>
for suggesting to skip code table info in SI data
diff --git a/HISTORY b/HISTORY
index 221ed6ee..16d0239d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5738,3 +5738,5 @@ Video Disk Recorder Revision History
heavy load (suggested by Helmut Auer).
- Fixed initializing the timer's flags in the cTimer copy constructor (thanks to
Andreas Mair).
+- Increased the time between checking the CAM status to 500ms to avoid problems
+ with some CAMs (reported by Arthur Konovalov).
diff --git a/ci.c b/ci.c
index 05a1bd4e..d9848a39 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 1.48 2007/04/30 13:02:49 kls Exp $
+ * $Id: ci.c 1.48.1.1 2008/04/13 13:33:32 kls Exp $
*/
#include "ci.h"
@@ -1525,7 +1525,7 @@ void cCiAdapter::Action(void)
cCamSlots CamSlots;
-#define MODULE_CHECK_INTERVAL 100 // ms
+#define MODULE_CHECK_INTERVAL 500 // ms
#define MODULE_RESET_TIMEOUT 2 // s
cCamSlot::cCamSlot(cCiAdapter *CiAdapter)