You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error is sometimes seen during step 1 of operating the system. Whether you see this issue or not seems to depend on what monitor is plugged into the raspberry Pi: some HDMI monitors will cause this issue, others will not. If no HDMI monitor is plugged in (e.g. if you're remotely logged in to the Pi), you'll most likely run into this issue.
There are multiple potential solutions to this, so you might just have to try them one by one to see what works. The basic idea behind the fix is making sure that the HDMI display manager is running, which is required for the SPI display driver to work, but wont necessarily be running by default depending on what is plugged in to the Raspberry Pi.
Plug in an HDMI display, or change the resolution
If no HDMI display is plugged in to the Raspberry Pi, try plugging one in (or if you don't want to, proceed to solution 2)
If an HDMI display is plugged in, try changing the resolution
e.g. main menu > preferences > Raspberry Pi Configuration > Display > Set Resolution > 1024x768 60 Hz
This set of solutions seems to have solved all errors observed in MouseGoggles builds so far. If none work for you, post below! You may also want to check out this helpful discussion from the original display SPI driver repository, where much of the information on how to fix this issue came from.
The text was updated successfully, but these errors were encountered:
This error is sometimes seen during step 1 of operating the system. Whether you see this issue or not seems to depend on what monitor is plugged into the raspberry Pi: some HDMI monitors will cause this issue, others will not. If no HDMI monitor is plugged in (e.g. if you're remotely logged in to the Pi), you'll most likely run into this issue.
There are multiple potential solutions to this, so you might just have to try them one by one to see what works. The basic idea behind the fix is making sure that the HDMI display manager is running, which is required for the SPI display driver to work, but wont necessarily be running by default depending on what is plugged in to the Raspberry Pi.
Plug in an HDMI display, or change the resolution
main menu > preferences > Raspberry Pi Configuration > Display > Set Resolution > 1024x768 60 Hz
Force HDMI display hotplugging
sudo nano /boot/config.txt
#hdmi_force_hotplug=1
. Uncomment that line (delete the#
symbol)ctrl-S
to save the file, then exit the windowTry an older HDMI display driver
sudo nano /boot/config.txt
#dtoverlay=vc4-kms-v3d
. Uncomment that line (delete the#
symbol) and changekms
tofkms
dtoverlay=vc4-fkms-v3d
ctrl-S
to save the file, then exit the windowThis set of solutions seems to have solved all errors observed in MouseGoggles builds so far. If none work for you, post below! You may also want to check out this helpful discussion from the original display SPI driver repository, where much of the information on how to fix this issue came from.
The text was updated successfully, but these errors were encountered: