Fixes a bug with default arg in one func

This commit is contained in:
brentru 2025-07-22 12:22:41 -04:00
parent c885a346fc
commit 0ca6e789eb
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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) {