Is it possible to send RTCM3 corrections over i2c? The tutorial suggests it is
All features are accessible over the I2C ports including reading NMEA sentences, sending UBX configuration strings, piping RTCM data into the module, etc.
Here is the code I’m using, ideally piping RTCM3 data from trip server over i2c, but it doesn’t seem to be working:
myGPS._i2cPort->beginTransmission(0x42);
while(ntrip_c.available() > 0) {
char ch = ntrip_c.read();
myGPS._i2cPort->write(ch);
delay(1);
}
if (myGPS._i2cPort->endTransmission(false) != 0) //Send a restart command. Do not release bus.
{
Serial.println("Sensor did not ACK"); //Sensor did not ACK
}