If the recording does not work properly, it sometimes helps to add a line to hal / arnbox / init.cpp
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 ...
Die Suche ergab 4 Treffer
- Fr 26. Apr 2019, 02:35
- Forum: VU+ SOLO 4K - Allgemeines
- Thema: [Split] Immer auf der Suche nach Neutrinos...
- Antworten: 117
- Zugriffe: 27291
- Mi 24. Apr 2019, 20:29
- Forum: VU+ SOLO 4K - Allgemeines
- Thema: [Split] Immer auf der Suche nach Neutrinos...
- Antworten: 117
- Zugriffe: 27291
Re: [Split] Immer auf der Suche nach Neutrinos...
If it works on other boxes, please make it public.
By the way, does anyone work on the internal oled driver in neutrino?
By the way, does anyone work on the internal oled driver in neutrino?
- Mi 24. Apr 2019, 19:54
- Forum: VU+ SOLO 4K - Allgemeines
- Thema: [Split] Immer auf der Suche nach Neutrinos...
- Antworten: 117
- Zugriffe: 27291
Re: [Split] Immer auf der Suche nach Neutrinos...
Yes, solo4k, and over vu+ boxes.
- Mi 24. Apr 2019, 16:53
- Forum: VU+ SOLO 4K - Allgemeines
- Thema: [Split] Immer auf der Suche nach Neutrinos...
- Antworten: 117
- Zugriffe: 27291
Re: [Split] Immer auf der Suche nach Neutrinos...
@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 ...
#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 ...