Fixes a bug with default arg in one func
This commit is contained in:
parent
c885a346fc
commit
0ca6e789eb
2 changed files with 2 additions and 2 deletions
2
.github/workflows/githubci.yml
vendored
2
.github/workflows/githubci.yml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
||||||
- name: Check for correct documentation with doxygen
|
- name: Check for correct documentation with doxygen
|
||||||
env:
|
env:
|
||||||
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
|
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
|
||||||
PRETTYNAME : "Adafruit Bus Ublox Library"
|
PRETTYNAME : "Adafruit uBlox Library"
|
||||||
run: bash ci/doxy_gen_and_deploy.sh
|
run: bash ci/doxy_gen_and_deploy.sh
|
||||||
|
|
||||||
- name: Test the code on supported platforms
|
- name: Test the code on supported platforms
|
||||||
|
|
|
||||||
|
|
@ -328,7 +328,7 @@ bool Adafruit_UBX::checkMessages() {
|
||||||
UBXSendStatus Adafruit_UBX::sendMessageWithAck(uint8_t msgClass, uint8_t msgId,
|
UBXSendStatus Adafruit_UBX::sendMessageWithAck(uint8_t msgClass, uint8_t msgId,
|
||||||
uint8_t *payload,
|
uint8_t *payload,
|
||||||
uint16_t length,
|
uint16_t length,
|
||||||
uint16_t timeout_ms = 500) {
|
uint16_t timeout_ms) {
|
||||||
// First send the message
|
// First send the message
|
||||||
if (!sendMessage(msgClass, msgId, payload, length)) {
|
if (!sendMessage(msgClass, msgId, payload, length)) {
|
||||||
if (verbose_debug > 0) {
|
if (verbose_debug > 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue