PS Input Raw - arthurbenemann/ardupilot GitHub Wiki

Raw GPS Input

This shows the output from the GPS module in raw form.

If you're having trouble with the regular GPS test, this may help you debug it.

  • NOT recommended for most users; only for hardcore GPS debugging.

If you'd rather see the output in ASCII, change this line in the Test tab:

{{{
Serial.print(incoming,BYTE); // will output Byte values
}}}
to this...
{{{
Serial.print(incoming,ASCII); // will output ASCII values
}}}