From af873a51cbd10a795031dfd8a0cf841aa214d80d Mon Sep 17 00:00:00 2001 From: George Kharrat Date: Tue, 25 Jun 2024 12:10:18 -0400 Subject: [PATCH] GPIO errors on startup (#177) * GPIO errors on startup Fixes issue that when booting the card, it sees the Pi and seems to start OK, but "Apple2-IO-RPi not found" is shown twice, then a BASIC prompt. Same error when running "-shell". * GPIO errors on startup fix addition for Classic edition Added Type=idle fix for Classic edition --- RaspberryPi/setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RaspberryPi/setup.sh b/RaspberryPi/setup.sh index 51de4f8..18e4195 100644 --- a/RaspberryPi/setup.sh +++ b/RaspberryPi/setup.sh @@ -58,6 +58,7 @@ sudo --preserve-env=HOME --preserve-env=USER bash -c 'cat > apple2driver.service Description=Apple2-IO-RPi Driver (Pico edition) [Service] +Type=idle ExecStart=$HOME/Apple2-IO-RPi/RaspberryPi/apple2driver/apple2driver -cdc=true StandardOutput=syslog StandardError=syslog @@ -75,6 +76,7 @@ sudo --preserve-env=HOME --preserve-env=USER bash -c 'cat > apple2driver.service Description=Apple2-IO-RPi Driver (Classic edition) [Service] +Type=idle ExecStart=$HOME/Apple2-IO-RPi/RaspberryPi/apple2driver/apple2driver StandardOutput=syslog StandardError=syslog