From bc80bd34c76a4e99a8dce2e01add213ca91e8a3d Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 28 Jan 2008 16:00:25 +0000 Subject: [PATCH 1/1] our alps bsbe2 frontend also needs the rotor workaround --- lib/dvb/frontend.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.30.2