-

CommentStreams:17658a38b65fb26268c8554129ef23fa

From Geekworm Wiki
< CommentStreams:79878ca19ffbadaac1def236701ec26e
Revision as of 13:06, 4 August 2020 by Christr (talk | contribs) (Migrated reply #1025)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

So the issue with the Blue/Yellow appears to be when the serial driver loads, it for some reason resets GPIO 7 & 8. So the setting that the vendor put in /boot/config.txt gets overridden.

So, I put the following mini startup script in to run on boot. Script location-name: /etc/systemd/system/fixgpio.service Script contents below:

[Unit] Description=fix gpio for screen

[Service] Type=simple ExecStart=/usr/bin/raspi-gpio set 7-8 a2

[Install] WantedBy=multi-user.target

Then run service fixgpio enable and reboot.

--Chris