Posts by wirbel

    Des weiteren sind die "bunten" Displays für diese Anwendung wohl leider raus.

    Deren Update-Time liegt mindestens im Bereich von 12-15s

    Falls du zweifarbige eInks meinst (rot, schwarz,weiß), ist das praktisch sehr viel weniger.


    Zumindest bei dem 2.9 Zoll296x128px was ich hier habe. Die update Zeit hängt vom Bereich des Displays ab (anteilige Fläche), der neu geschrieben wird, wenn man nur Teile des Displays neu schreibt, braucht man auch nur Bruchteile davon. Bei eine Sekundenzähler, der nur ~10% des Display bereichs neu schreibt merkt man fast keine Verzögerung. Der Riesenvorteil ist ein flimmerfreies Display mit krassem Kontrast und der Inhalt bleibt ohne Strom stehen.

    Hi,

    Seit ein paar Wochen gibt es doch wieder welche zu kaufen für Nicht-Mondpreise.

    MfG Stefan

    Gestern einen RPi4 mit 4GB gekauft: 70,85 mit Versand. Also ja, gibt es endlich wieder.


    Ein wenig nachdenklich macht der Preis, der letzte mit 8GB kostete 80. Der dient als häuslicher NAS an einer 14 TB Platte.

    ..wäre ja schon toll, wenn es mal wieder Raspberries überhaupt sinnvoll zu kaufen gäbe.

    Der 4er ist wie ein Einhorn, jeder hat davon gelesen/gehört, real gesehen die wenigsten.

    Kann mal einer checken, ob diese Änderung in vdr/PLUGINS/src/vdr-plugin-satip/tuner.c:355 das Problem löst?




    Code
    tuner.c:355
    
    --  if (isSat)
    ++  if (payload[next].find("src=") == 0)

    Hmm, i'm looking at this one.


    First of all, doing different things in one patch or PR is a No-Go for me.

    One patch/PR, one topic.


    Therefore, i will split this into several topics, the commandline passed to the satip plugin will be first - bugs first, new things later.


    "execute in your LAN only one SAT>IP server with the option of disabling the SSDP announcement"

    My server doesnt support this. This features is beyond the SAT>IP spec, which requires this feature active && working for any SAT>IP server.


    "In this line you use the last space as the separator for the next command pased to the SAT>IP VDR plugin. However, the correct separator is a ";" char and not an " " (space)."

    Correct, today i stumbled on this bug, just before reading it here.

    This 'fix' in your PR is actually a noop, but should be included in any case.

    Code
    --        options += "-s" + WirbelscanSetup.SatipSvr;
    ++        options += "-s " + WirbelscanSetup.SatipSvr;


    Most likely, correct solution should be

    Code
    std::string options("-t 16384");
    
    
    // add further satip plugin options as needed.
    if (not WirbelscanSetup.SatipSvr.empty())
    options += ";-s " + WirbelscanSetup.SatipSvr;


    For future contacts, i prefer by work together by email.

    This topic is for most users here too detailled and not that interesting.

    Hi Lars,


    could you pls check on this one && comment?


    -> XML output of w_scan_cpp: I'll wait until you check and fix it. The bug is present, and the "excessive" identation for services it's easy to fix.



    branch xml_output, latest change.


    If everything is fine, it would take this one into main branch.


    I hope - not shure - that i can find a few minutes more this weekend. But difficult..

    Hi Lars,


    #2 should be fixed and/or checked in any case.

    Lets works together on this. Get in touch with me via email..


    #1 is a bit more difficult, wirbelscan is used mostly used in a real VDR environment (main application as a dtv scanner plugin), w_scan_cpp is only on top of that..

    The vdr-plugin-wirbelscan is the actual DVB (DTV) scanner used in the cmdline tool called w_scan_cpp, but now alrdy ~20yrs old (~2003). SCAN_TRANSPONDER is used together with the VDR main menu app (https://www.gen2vdr.de/wirbel/wirbelscancontrol/index2.html) only. It's not intended so far (yet) to be used on wirbelscan. I'm open for suggestions, which doesnt break any existing code.



    Related on the NIT disabling: no. Definitly no. This is a channel scanner, and most useful info is captured on NIT.

    Related to the times looking for data on a transponder, i will stick on the ETSI ETR-211 standard timing rules. see it's chapter 4.4 'minimum repetition rates.'


    May be, you could reach out via email, even if you dont like it.

    PCB Solder kann das sehr wahrscheinlich. Macht auch sehr schöne Youtube Videos btw.


    PCB Solder
    Baujahr nicht mehr das neuste Modell, Augen nicht mehr die besten, Hände nicht mehr die ruhigsten. Seit 2004 im Bereich der Unterhaltungselektronik mit…
    www.youtube.com



    Problem ist, dass die Pads von der Platine abgerissen sind, da brauchst du jemanden mit Erfahrung und der passenden Ausrüstung.

    Sieht aber hoffnungsvoll aus.

    depmod should update the list of dependencies for any module (modules, which should be loaded beforehand) for any installed module.

    If loaded via modprobe, the dependencies would be loaded first.


    modprobe intelligently adds or removes a module from the Linux kernel(..)

    ...

    modprobe expects an up-to-date modules.dep file, as generated by depmod