Seite 5 von 8

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Di 19. Feb 2019, 17:04
von PauleFoul
Hallo zusammen,

ich wollte mal fragen ob es hier irgendwo eine aktuelle Übersicht gibt, was bei der Solo4k mit Neutrino geht und was nicht?

Hab nämlich Interesse an dem Teil, weil mir die 2 Tuner (1x DVB-S / 1x DVB-C) bei der HD51 oft nicht reichen, da ich relativ viel aufnehme und USB Tuner gehen ja leider auch (noch?) nicht... :cry:

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Di 19. Feb 2019, 17:23
von BPanther
Sicher gibts das, zumindest das was nicht geht - dafür ist ja das ChangeLog da -> Neutrino - v3.71 - Download und Changelog

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 5. Apr 2019, 10:07
von Janus
Gerade gesehen, dass sich auf dem Gebiet Vodoo - eehm vuduo - was tut. :thumbs:
Betrifft das im Ergebnis dann auch die Duo 4K ?
Wenn ja, würde ich schonmal mit Sparen anfangen... :bounce:

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 5. Apr 2019, 10:34
von BPanther
Nein, die DUO ist eine (alte) MIPS, und nur dafür habe ich MIPS eingebaut. Die DUO 4K hingegen ist eine (aktuelle) ARM Box. Guckst Du hier: https://wiki.vuplus-support.org/index.p ... chstabelle

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 5. Apr 2019, 12:30
von Janus
Hatte gehofft, die Erfahrungen mit der alten Duo zusätzlich zu denen mit der neueren Solo 4K könnten da entsprechende Synergie-Effekte erzeugen.

Ich fürchte zudem, die angekündigte Nachfolge-Box der HD51 wird meine Hardware-Anforderungen nicht in gleichem Maße erfüllen.

Dann müsste ich mich vielleicht doch noch mit Enigma auf der Duo 4K anfreunden!
Aber die Hoffnung stirbt zuletzt.... :sarcblink:

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 5. Apr 2019, 13:09
von BPanther
Letztlich habe ich ja bekanntlich auch bei der Solo4K immernoch die alten Probleme und bekomme die nicht weg, weil ich nicht weiß, wo ich da ansetzen soll. E2 wäre da auch eigentlich besser... :oops:

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 16:53
von redblue-pkt
@BPanther Can you test this program:
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>

#define DEEPSTANDBY 0x123456 // 0x34 0x56 0x12 to send

int g_oledFd = -1;
char g_oledDevice[] = "/dev/oled0";

int main(int argc, char **argv)
{
g_oledFd = open(g_oledDevice, O_RDWR);
if (ioctl(g_oledFd, DEEPSTANDBY) < 0)
perror("DEEPSTANDBY");

if (g_oledFd >= 0)
{
close(g_oledFd);
g_oledFd = -1;
} else
perror("Error: Oled not available!\n");
}

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 17:07
von BPanther
At solo4k?

EDIT: Testet at solo4k -> Box immediately Deep Standby after execution.

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 19:54
von redblue-pkt
Yes, solo4k, and over vu+ boxes.

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 20:21
von BPanther
Works and maybe a replacement for the closed source "turnoff_power" binary.

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 20:29
von redblue-pkt
If it works on other boxes, please make it public.

By the way, does anyone work on the internal oled driver in neutrino?

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Mi 24. Apr 2019, 20:46
von BPanther
I will test it on the MIPS VU DUO also, if this works, so I can put it to the GIT at apps/tools and remove the "turnoff_power" binary...

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Do 25. Apr 2019, 13:00
von BPanther
redblue-pkt hat geschrieben: Mi 24. Apr 2019, 20:29If it works on other boxes, please make it public.
Now for vuduo and solo4k at the GIT. Thanks again. :drinking:
redblue-pkt hat geschrieben: Mi 24. Apr 2019, 20:29By the way, does anyone work on the internal oled driver in neutrino?
No, not really, because there are many other problems to fix (e.g. tuner, recording...). There is also a VFD problem at the duo - shows many times "VU+ Duo" instead the wanted text. And if send to the VFD too fast -> complete box will crashing/freezing...

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 26. Apr 2019, 02:35
von redblue-pkt
If the recording does not work properly, it sometimes helps to add a line to hal / arnbox / init.cpp

Code: Alles auswählen

                const char mode_fcc[] = { "enable" };
                proc_put("/proc/stb/frontend/fbc/fcc", mode_fcc, strlen(mode_fcc));
                const char mode_force_lnbon[] = { "on" };
                proc_put("/proc/stb/frontend/fbc/force_lnbon", mode_force_lnbon, strlen(mode_force_lnbon));

Re: [Split] Immer auf der Suche nach Neutrinos...

Verfasst: Fr 26. Apr 2019, 04:26
von BPanther
Hmm, /proc/stb/frontend/fbc/force_lnbon does not exist. The first i have try'd:

Code: Alles auswählen

vusolo4k:~# echo -n enable > /proc/stb/frontend/fbc/fcc
vusolo4k:~# cat /proc/stb/frontend/fbc/fcc
enable
But does not help, the second (or more) recording at same time still 0 Bytes.