Hannes Winkler
Hannes Winkler
It should actually work even with the `could not find a preferred output mode` message. What pi are you using? Maybe attach the output if the `raspinfo` command
Can you try commenting out the `hdmi_force_hotplug`, `hdmi_mode`, `hdmi_group` & `hdmi_timings` config options? I know the wiki for the display says you need those but I'm not sure how those...
that basically means your display has a broken EDID (`hdmi_timings` etc is a workaround for that) You can try adding a `video=HDMI-A-1:320x1480@62` parameter (again, with commented out `hdmi_*` in config.txt)...
Seems like something about the timings is still off. If you just put `video=HDMI-A-1:320x1480@62`, KMS will calculate some default timings (you can calculate them yourself [here](https://tomverbeure.github.io/video_timings_calculator)) which don't match what...
Can you try to edit the EDID and only leave one detailed timing descriptor that has the same timings as `hdmi_timings=320 0 80 16 32 1480 0 16 4 12...
I think your driver just doesn't support EGL 1.5 probably. That's not a problem though, `eglDestroyImage` is available as `eglDestroyImageKHR` in earlier versions of EGL, and even if it's not,...
Hello, can you try launching flutter-pi without the `-i /dev/input/touchscreen0` option? It's more likely you break something when you specify that option actually 😄 The missing text probably means some...
Have you made sure you use the latest flutter-pi? Actually very important in this case, added a workaround for flutter 2.2 recently that fixed an issue exactly like this. Can...
@top-master not sure I agree, flutter is a GUI framework so of course you can talk about viewing PDFs inside flutter. Opening a PDF viewer to view the pdf would...
Yeah I agree, I should document that. It's pretty simple actually, the `flutter build bundle` command always builds the debug artifacts (except if given the `--precompiled` argument). So the debug...