You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
There are a lot of public getXXX(uint16_t maxWait = 250) methods with default maxWait set to 250. However specified maxWait argument is ignored in most cases since implementation relies on default maxWait
int32_t SFE_UBLOX_GPS::getLatitude(uint16_t maxWait)
{
if (moduleQueried.latitude == false)
getPVT(); <-- Here getPVT uses its default maxWait
IMHO caused by too many default arguments in helper methods like:
sendCommand, sendI2cCommand, waitForResponse, getPVT