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
Hey,
I just switched from my self implemented version (still the old v1.18) to the "new" pushRawData.
Works out fine, however since I2C_BUFFER_LENGTH = 128 in the Wire lib, sending messages bigger than 128 byte leeds to buffer overflow when using _i2cPort->endTransmission(false) in the loop of the pushRawData function.
So some bigger rtcm messages where not send correctly in my case.
I changed to use _i2cPort->endTransmission(false) all 128 bytes and now its working fine.
Would be awesome if you could fix that. Nevertheless, great work!