Difference between revisions of "Common problems"
Jump to navigation
Jump to search
(Added No GPS position item) |
|||
Line 18: | Line 18: | ||
==How do I check if my telemetry is working?== | ==How do I check if my telemetry is working?== | ||
:'''Solution''': Launch the link and messages tools in the Paparazzi Center. You should see the the messages coming in (blinking green) in the messages window. | :'''Solution''': Launch the link and messages tools in the Paparazzi Center. You should see the the messages coming in (blinking green) in the messages window. | ||
: You might need to adjust the device and baud-rate of the link according to your setup, e.g. link -d /dev/ttyUSB0 -s 57600 | : You might need to adjust the device and baud-rate of the link according to your setup, e.g. <tt>link -d /dev/ttyUSB0 -s 57600</tt> | ||
: If you're stuck you can make ''link'' very verbose by setting the ''PPRZ_DEBUG'' environment variable to '' '*' '' | : If you're stuck you can make ''link'' very verbose by setting the ''PPRZ_DEBUG'' environment variable to '' '*' '' | ||
==No GPS position== | |||
:'''Problem''': Your GPS seems to be working, but you cannot get a valid position fix. Speed and course are displayed correctly, though. Possibly you also see Invalid_argument("Latlong.of_utm") errors on the GCS log. | |||
This may happen if you have configured the wrong GPS subsystem for your Tiny board. | |||
If you have the LEA-5H module on your Tiny board, but have configured | |||
<tt><subsystem name="gps" type="ublox_lea4p"/></tt> | |||
in your airframe file, this will occur because the 5H module does not support UTM position. | |||
:'''Solution''': Change the gps type to "<tt>ublox_lea5h</tt>" or add a <tt><define name="GPS_USE_LATLONG"/></tt> flag. | |||
|} | |} |
Revision as of 04:52, 11 January 2011
Paparazzi FAQ - Common problems and solutions
I only get a blank (black) GCS
I get a Failure("#of_world:no georef") when trying to load map tiles
How do I check if my telemetry is working?
No GPS position
This may happen if you have configured the wrong GPS subsystem for your Tiny board. If you have the LEA-5H module on your Tiny board, but have configured <subsystem name="gps" type="ublox_lea4p"/> in your airframe file, this will occur because the 5H module does not support UTM position.
|