Hi,
Has anyone come up with a procedure to update MTK firmware or utilize the MTK_Minigps program using a USB cable and the oil pan (No FTDI). I know it can be done with the UBLOX with this simple sketch. (from a different thread)
void setup(){
Serial.begin(38400); // FTDI
Serial1.begin(38400); // GPS; 9600 first time, 38400 second time
delay(1000);
}
void loop()
{
if (Serial.available())
Serial1.write(Serial.read());
if (Serial1.available())
Serial.write(Serial1.read());
}
Replies