Should be right that way, the blindscan is okay we have tested this. If you get wrong channels then you have probably saved the wrong values (maybe mixed up KHz with MHz somewhere?)
Ок,this solved.
Next big problem...
example:
Scanning 13V Lowband
OK 1006579 27499 FEC_AUTO NOT_IMPLEMENTED INVERSION_OFF
We are aware of only three values-->frequency,symbol rate, polarisation
+
orbpos
For enigma2 service scan need this values:
transponder = (frequency, symbolrate, polarisation, fec, inversion, orbpos, system, modulation, rolloff, pilot, tsid, onid)
Substitute all the values automatically.
+ parm = eDVBFrontendParametersSatellite()
+ parm.orbital_position = self.orb_position
+ parm.polarisation = self.Sundtek_pol
+ frequency = ((int(data[1]) + self.offset) / 1000) * 1000
+ parm.frequency = frequency
+ symbol_rate = int(data[2]) * 1000
+ parm.symbol_rate = symbol_rate
+ parm.system = parm.System_DVB_S
+ parm.inversion = parm.Inversion_Off
+ parm.pilot = parm.Pilot_Off
+ parm.fec = parm.FEC_Auto
+ parm.modulation = parm.Modulation_QPSK
+ parm.rolloff = parm.RollOff_alpha_0_35
+ self.tmp_tplist.append(parm)
After scan tuner (sundtek sky tv ultimate 5) --> 0 channels found
After scan any internal tuner --> more channels found (all values is same)
So.
It is a bug in the sundtek drivers.