Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions documentation/docs/reference/hardware/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)

Expand Down
14 changes: 8 additions & 6 deletions software/distro/setup/planktoscope-app-env/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down