From c0fd6b3e02ccf8b8f78c247ddab5708a64d28467 Mon Sep 17 00:00:00 2001 From: TangoCash Date: Tue, 15 Jan 2019 20:48:02 +0100 Subject: [PATCH] zapit/frontend: correct unicable timing for arm boxes Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/2f416636a50e4209c2f6210c424192e0f06b0ba4 Author: TangoCash Date: 2019-01-15 (Tue, 15 Jan 2019) Origin message was: ------------------ - zapit/frontend: correct unicable timing for arm boxes ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/zapit/src/frontend.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/zapit/src/frontend.cpp b/src/zapit/src/frontend.cpp index 7b147e208..0f2379c83 100644 --- a/src/zapit/src/frontend.cpp +++ b/src/zapit/src/frontend.cpp @@ -1723,8 +1723,8 @@ uint32_t CFrontend::sendEN50494TuningCommand(const uint32_t frequency, const int cmd.msg[4] = t & 0xFF; } fop(ioctl, FE_SET_VOLTAGE, SEC_VOLTAGE_18); - usleep(15 * 1000); /* en50494 says: >4ms and < 22 ms */ - sendDiseqcCommand(&cmd, 50); /* en50494 says: >2ms and < 60 ms */ + usleep(20 * 1000); /* en50494 says: >4ms and < 22 ms */ + sendDiseqcCommand(&cmd, 80); /* en50494 says: >2ms and < 60 ms */ fop(ioctl, FE_SET_VOLTAGE, unicable_lowvolt); } return ret; @@ -1753,8 +1753,8 @@ uint32_t CFrontend::sendEN50607TuningCommand(const uint32_t frequency, const int (horizontal << 1) | /* horizontal == 0x02 */ high_band; /* high_band == 0x01 */ fop(ioctl, FE_SET_VOLTAGE, SEC_VOLTAGE_18); - usleep(15 * 1000); /* en50494 says: >4ms and < 22 ms */ - sendDiseqcCommand(&cmd, 50); /* en50494 says: >2ms and < 60 ms */ + usleep(20 * 1000); /* en50494 says: >4ms and < 22 ms */ + sendDiseqcCommand(&cmd, 80); /* en50494 says: >2ms and < 60 ms */ fop(ioctl, FE_SET_VOLTAGE, SEC_VOLTAGE_13); } return ret;