mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the time between checking the CAM status to 500ms to avoid problems with some CAMs
This commit is contained in:
parent
1d417431d6
commit
6b32797180
@ -1510,6 +1510,7 @@ Arthur Konovalov <kasjas@hot.ee>
|
|||||||
for translating OSD texts to the Estonian language
|
for translating OSD texts to the Estonian language
|
||||||
for fixing a missing ',' in the Greek OSD texts
|
for fixing a missing ',' in the Greek OSD texts
|
||||||
for fixing a missing ',' in the Swedish 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>
|
Milos Kapoun <m.kapoun@cra.cz>
|
||||||
for suggesting to skip code table info in SI data
|
for suggesting to skip code table info in SI data
|
||||||
|
2
HISTORY
2
HISTORY
@ -5738,3 +5738,5 @@ Video Disk Recorder Revision History
|
|||||||
heavy load (suggested by Helmut Auer).
|
heavy load (suggested by Helmut Auer).
|
||||||
- Fixed initializing the timer's flags in the cTimer copy constructor (thanks to
|
- Fixed initializing the timer's flags in the cTimer copy constructor (thanks to
|
||||||
Andreas Mair).
|
Andreas Mair).
|
||||||
|
- Increased the time between checking the CAM status to 500ms to avoid problems
|
||||||
|
with some CAMs (reported by Arthur Konovalov).
|
||||||
|
4
ci.c
4
ci.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "ci.h"
|
||||||
@ -1525,7 +1525,7 @@ void cCiAdapter::Action(void)
|
|||||||
|
|
||||||
cCamSlots CamSlots;
|
cCamSlots CamSlots;
|
||||||
|
|
||||||
#define MODULE_CHECK_INTERVAL 100 // ms
|
#define MODULE_CHECK_INTERVAL 500 // ms
|
||||||
#define MODULE_RESET_TIMEOUT 2 // s
|
#define MODULE_RESET_TIMEOUT 2 // s
|
||||||
|
|
||||||
cCamSlot::cCamSlot(cCiAdapter *CiAdapter)
|
cCamSlot::cCamSlot(cCiAdapter *CiAdapter)
|
||||||
|
Loading…
Reference in New Issue
Block a user