-

CommentStreams:Baf19fe2a0c44d91c555fd72024d29ce

From Geekworm Wiki
< CommentStreams:526378bd209a31ca536522389d2bedd1
Revision as of 12:45, 4 August 2020 by 173.69.3.2 (talk) (Migrated reply #1023)
(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