From: Andreas Monzner Date: Mon, 28 Jan 2008 16:00:25 +0000 (+0000) Subject: our alps bsbe2 frontend also needs the rotor workaround X-Git-Tag: 2.6.0~1580 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/bc80bd34c76a4e99a8dce2e01add213ca91e8a3d our alps bsbe2 frontend also needs the rotor workaround --- diff --git a/lib/dvb/frontend.cpp b/lib/dvb/frontend.cpp index 6a26ae98..168ff052 100644 --- a/lib/dvb/frontend.cpp +++ b/lib/dvb/frontend.cpp @@ -2151,7 +2151,9 @@ bool eDVBFrontend::setSlotInfo(ePyObject obj) m_slotid = PyInt_AsLong(Id); m_enabled = Enabled == Py_True; // HACK.. the rotor workaround is neede for all NIMs with LNBP21 voltage regulator... - m_need_rotor_workaround = !!strstr(m_description, "Alps BSBE1") || !!strstr(m_description, "Alps -S"); + m_need_rotor_workaround = !!strstr(m_description, "Alps BSBE1") || + !!strstr(m_description, "Alps BSBE2") || + !!strstr(m_description, "Alps -S"); eDebug("setSlotInfo for dvb frontend %d to slotid %d, descr %s, need rotorworkaround %s, enabled %s", m_dvbid, m_slotid, m_description, m_need_rotor_workaround ? "Yes" : "No", m_enabled ? "Yes" : "No" ); return true;