Open GoogleCodeExporter opened 8 years ago
The code currently does not support number of satellites. We're seeing about
changing that in the future, but it doesn't inhibit normal APM operation right
now. See also issue 142.
Original comment by bjpcalt...@gmail.com
on 23 Nov 2010 at 6:42
Replace Serial.printf_P(PSTR(" Alt: %dm, #sats: %d\n"), GPS.altitude/100,
GPS.num_sats); (in test.pde)
with...
Serial.print(" Alt:");
Serial.print(GPS.altitude / 100.0, 2);
Serial.print("m");
Serial.print(" SAT:");
Serial.print(GPS.num_sats, DEC);
Serial.println(" ");
Original comment by whitm...@gmail.com
on 9 Dec 2010 at 5:52
Original issue reported on code.google.com by
dean.slo...@hotmail.com
on 23 Nov 2010 at 3:49