Removed DVB-C model quirks from OctopusNet. The firmware version 1.0.40 looks correct.

This commit is contained in:
Rolf Ahrenberg 2014-12-18 00:27:13 +02:00
parent 4b714196f3
commit fa226b0d2f
1 changed files with 0 additions and 11 deletions

View File

@ -60,11 +60,6 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
modelCountM[eSatipModuleDVBT2] = atoi(++c);
else
modelCountM[eSatipModuleDVBT2] = 1;
// Add model quirks here
if (!isempty(*descriptionM) && strstr(*descriptionM, "OctopusNet")) {
modelTypeM |= cSatipServer::eSatipModelTypeDVBC;
modelCountM[eSatipModuleDVBC] = modelCountM[eSatipModuleDVBT2];
}
}
if (strstr(r, "DVBT")) {
modelTypeM |= cSatipServer::eSatipModelTypeDVBT;
@ -72,10 +67,6 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
modelCountM[eSatipModuleDVBT] = atoi(++c);
else
modelCountM[eSatipModuleDVBT] = 1;
// Add model quirks here
if (!isempty(*descriptionM) && strstr(*descriptionM, "OctopusNet"))
modelTypeM |= cSatipServer::eSatipModelTypeDVBC;
modelCountM[eSatipModuleDVBC] = modelCountM[eSatipModuleDVBT];
}
if (strstr(r, "DVBC2")) {
modelTypeM |= cSatipServer::eSatipModelTypeDVBC2;
@ -83,7 +74,6 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
modelCountM[eSatipModuleDVBC2] = atoi(++c);
else
modelCountM[eSatipModuleDVBC2] = 1;
// Add model quirks here
}
if (strstr(r, "DVBC")) {
modelTypeM |= cSatipServer::eSatipModelTypeDVBC;
@ -91,7 +81,6 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
modelCountM[eSatipModuleDVBC] = atoi(++c);
else
modelCountM[eSatipModuleDVBC] = 1;
// Add model quirks here
}
r = strtok_r(NULL, ",", &s);
}