Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs committed Apr 28, 2024
1 parent 73a623b commit eb96bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BresserWeatherSensorLW.ino
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ void setup()
// or whatever is interfering with the device <-> gateway airwaves.
uint32_t sleepForSeconds = min((bootCountSinceUnsuccessfulJoin++ + 1UL) * 60UL, 3UL * 60UL);
log_i("Boots since unsuccessful join: %u", bootCountSinceUnsuccessfulJoin);
log_i("Retrying join in %u seconds", sleepForSeconds);
log_i("Retrying join in %u seconds", (unsigned int)sleepForSeconds);

gotoSleep(sleepForSeconds);
}
Expand Down

0 comments on commit eb96bdc

Please sign in to comment.