mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 01:41:12 +02:00
add basic support for DVB-T
This needs more fine tuning wrt scan setup etc, but should work for now.
Conflicts:
data/Makefile.am
data/locale/english.locale
src/gui/scan.cpp
src/gui/scan_setup.cpp
src/neutrino.cpp
src/zapit/include/zapit/getservices.h
src/zapit/src/frontend.cpp
src/zapit/src/getservices.cpp
src/zapit/src/transponder.cpp
Origin commit data
------------------
Commit: 5f4c1b986c
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-10-07 (Sun, 07 Oct 2012)
This commit is contained in:
committed by
[CST] Focus
parent
68844defe1
commit
fcf785599d
@@ -1891,12 +1891,20 @@ TIMER_START();
|
||||
|
||||
cpuFreq = new cCpuFreqManager();
|
||||
cpuFreq->SetCpuFreq(g_settings.cpufreq * 1000 * 1000);
|
||||
|
||||
g_info.delivery_system = CFEManager::getInstance()->getLiveFE()->getInfo()->type == FE_QPSK ? DVB_S : DVB_C;
|
||||
#if HAVE_TRIPLEDRAGON
|
||||
/* only SAT-hd1 before rev 8 has fan, rev 1 is TD (compat hack) */
|
||||
g_info.has_fan = (cs_get_revision() > 1 && cs_get_revision() < 8 && g_info.delivery_system == DVB_S);
|
||||
#else
|
||||
switch (CFEManager::getInstance()->getLiveFE()->getInfo()->type) {
|
||||
case FE_QPSK:
|
||||
g_info.delivery_system = DVB_S;
|
||||
break;
|
||||
case FE_OFDM:
|
||||
g_info.delivery_system = DVB_T;
|
||||
break;
|
||||
case FE_QAM:
|
||||
default:
|
||||
g_info.delivery_system = DVB_C;
|
||||
break;
|
||||
}
|
||||
#if HAVE_COOL_HARDWARE
|
||||
/* only SAT-hd1 before rev 8 has fan */
|
||||
g_info.has_fan = (cs_get_revision() < 8 && g_info.delivery_system == DVB_S);
|
||||
#endif
|
||||
dprintf(DEBUG_NORMAL, "g_info.has_fan: %d\n", g_info.has_fan);
|
||||
|
Reference in New Issue
Block a user