diff --git a/documentation/docs/reference/hardware/changelog.md b/documentation/docs/reference/hardware/changelog.md index 2d2fd061b..783915946 100644 --- a/documentation/docs/reference/hardware/changelog.md +++ b/documentation/docs/reference/hardware/changelog.md @@ -12,9 +12,7 @@ Replaces [Raspberry Pi 4](https://www.raspberrypi.com/products/raspberry-pi-4-mo Increased RAM from 4 to 8 GB. -Includes a [Real Time Clock (RTC)](https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#real-time-clock-rtc) - -Includes [RTC rechargeable battery](https://www.raspberrypi.com/products/rtc-battery/) +Includes a [Real Time Clock (RTC)](https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#real-time-clock-rtc) with [rechargeable battery](https://www.raspberrypi.com/products/rtc-battery/). Includes [Raspberry Pi Active Cooler](https://www.raspberrypi.com/products/active-cooler/) diff --git a/software/distro/setup/planktoscope-app-env/setup.sh b/software/distro/setup/planktoscope-app-env/setup.sh index db5351a30..3ce793f57 100755 --- a/software/distro/setup/planktoscope-app-env/setup.sh +++ b/software/distro/setup/planktoscope-app-env/setup.sh @@ -66,12 +66,14 @@ else panic "$description" fi -description="set up GPS and clock driver" -report_starting "$description" -if "$build_scripts_root/gps/install.sh"; then - report_finished "$description" -else - panic "$description" +if [ "$hardware_type" = "adafruithat" ]; then + description="set up GPS and clock driver" + report_starting "$description" + if "$build_scripts_root/gps/install.sh"; then + report_finished "$description" + else + panic "$description" + fi fi description="enable CPU overclocking"