Skip to content

Commit

Permalink
[RP2XXX] bump Pico Core up to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Sep 13, 2024
1 parent 61eee26 commit 6f88174
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ jobs:
fi
if [[ "$BOARD" =~ "rp2040:rp2040:" ]]; then
arduino --pref "boardsmanager.additional.urls=https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json" --save-prefs ;
arduino --install-boards rp2040:rp2040:4.0.1 ;
arduino --install-boards rp2040:rp2040:4.0.2 ;
arduino --board $BOARD --save-prefs ;
if [[ "$BOARD" =~ "rp2040:rp2040:rpipicow" ]]; then
arduino --pref "custom_freq=rpipicow_120" --save-prefs ;
Expand Down
3 changes: 3 additions & 0 deletions software/firmware/source/SoftRF/src/platform/nRF52.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1365,6 +1365,9 @@ static void nRF52_post_init()
Serial.print(F("GNSS : "));
Serial.println(hw_info.gnss != GNSS_MODULE_NONE ? F("PASS") : F("N/A"));
Serial.flush();
Serial.print(F("BARO : "));
Serial.println(hw_info.baro != BARO_MODULE_NONE ? F("PASS") : F("N/A"));
Serial.flush();

Serial.println();
Serial.println(F("Power-on Self Test is complete."));
Expand Down

0 comments on commit 6f88174

Please sign in to comment.