From 0ca6e789ebcb4abc53527c2a089e9a67809f5fdb Mon Sep 17 00:00:00 2001 From: brentru Date: Tue, 22 Jul 2025 12:22:41 -0400 Subject: [PATCH] Fixes a bug with default arg in one func --- .github/workflows/githubci.yml | 2 +- Adafruit_UBX.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/githubci.yml b/.github/workflows/githubci.yml index 6061569..c64b817 100644 --- a/.github/workflows/githubci.yml +++ b/.github/workflows/githubci.yml @@ -25,7 +25,7 @@ jobs: - name: Check for correct documentation with doxygen env: GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }} - PRETTYNAME : "Adafruit Bus Ublox Library" + PRETTYNAME : "Adafruit uBlox Library" run: bash ci/doxy_gen_and_deploy.sh - name: Test the code on supported platforms diff --git a/Adafruit_UBX.cpp b/Adafruit_UBX.cpp index c1a4b80..293b656 100644 --- a/Adafruit_UBX.cpp +++ b/Adafruit_UBX.cpp @@ -328,7 +328,7 @@ bool Adafruit_UBX::checkMessages() { UBXSendStatus Adafruit_UBX::sendMessageWithAck(uint8_t msgClass, uint8_t msgId, uint8_t *payload, uint16_t length, - uint16_t timeout_ms = 500) { + uint16_t timeout_ms) { // First send the message if (!sendMessage(msgClass, msgId, payload, length)) { if (verbose_debug > 0) {