Feedback zum Release Candidate vom 21.07.2009

    • Offizieller Beitrag

    Hi,


    auf dreamboxupdate.com unter dm800 -> images -> release befindet sich wieder ein aktuelles release candidate Image für die dm800. Dort findet man ebenfalls das dazugehörige changelog.


    Fehler in diesem Image bitte hier melden. Aber bitte nur, wenn auch exakt dieses Image geflasht wurde.
    Kein aktuelles Experimental .. das ist nicht vergleichbar, da im release lediglich bugfixes einfliessen und features die als Stabil angesehen werden.


    Ein Onlineupdate vom vorherigen Release ist nicht möglich, da das vorherige Release noch auf dem 2.4er enigma2 aufgebaut hat.


    Vom vorherigen Release Candidate kann allerdings ein Onlineupdate durchgeführt werden.


    Nachtrag: Wir löschen ALLE Postings, die nicht unmittelbar zu diesem Thema hier gehören ersatzlos.


    cya

  • thanks a lot for your support to NA users
    i was surprised since you didnt answer to my thread for supporting us


    you did 2 things for us:
    - longer SDT timeout for working servicescan on "dish network"
    - add more valid tv service types


    now scanning is smooth and i got the same number of channels of scanning sat with an mage that is known to scan dish network very well, good job guys
    but most of tv channels are recognized as data, so you didnt add enough tv service types: By default, CVS versions of enigma recognize only service types 1 & 4 as TV services, but DN for example also uses service types 128,133,137,140,144,145,150,154,160,163,164,165,166,167,168,173 & 174 as TV

    2 Mal editiert, zuletzt von anis_ber ()

  • maybe you need something like:



    Replace line in scan.cpp

    Code
    ref.setServiceType(d.getServiceType())


    with


    Code
    if (d.getServiceType() == 128 || d.getServiceType() == 133 || d.getServiceType() == 137 || d.getServiceType() == 140 || d.getServiceType() == 144 || d.getServiceType() == 145 || d.getServiceType() == 150 || d.getServiceType() == 154 || d.getServiceType() == 160 || d.getServiceType() == 163 || d.getServiceType() == 164 || d.getServiceType() == 165 || d.getServiceType() == 166 || d.getServiceType() == 167 || d.getServiceType() == 168 || d.getServiceType() == 173 || d.getServiceType() == 174) 
    { 
    ref.setServiceType(1); 
    } 
    else 
    ref.setServiceType(d.getServiceType());
  • Hello,


    I was hoping you could also add support for NA users that have a DishPro LNB setup (Satelite Equipment). Genpix has introduced a patch that will support DishPro LNB support in enigma2 boxes (Tested on DM800). Below is the patch he provided.



    All you have to do is select (for every DP LNB you have):
    LO/low = 11250
    LO/high = 14350
    threshold = 00001


    If you have linear bandstacked LNBs, adjust frequencies accordingly (10750 and 13850).


    when SEC finds LNB with threshold = 1 (1000kHz), it treats it as DishPro LNB:
    LOF is selected based on polarization (make sure you use correct one), and LNB voltage is always set to 18V.


    This insures that all frequencies found in the NIT would work with scan engine and DP setup.