@Eric-Katzfey I've seen this gps_dump
uorb not get recored because the default is to request optional logging. https://github.com/modalai/px4-firmware/blob/8d26285b2362354092aca88716c70d48a3c62ea2/src/modules/logger/logged_topics.cpp#L73
change to add_topic
fixes that.
@groupo if you want to do something like PPK processing on raw GPS phase data then you need to change the GPS driver submodule. Upstream default explicitly disables msgs such as UBX_RXM_RAWX
. I don't know why. Would be useful functionality to have the dump param turn on raw data for devices that support it.
Only other useful data without code change is satellite_info
that will give carrier to noise ratio to diagnose GPS issues. But it's only published if GPS_SAT_INFO
is set to 1 and recorded if bit 5 of SDLOG_PROFILE
is high.