From 8c9eafeb3c49a7b2b90c12fffc42bde8b67bb435 Mon Sep 17 00:00:00 2001 From: Michael du Breuil Date: Wed, 6 Jan 2016 21:43:23 -0700 Subject: [PATCH] AP_GPS: Fix param docs that had incorrect spaces The spaces between values aren't stirpped by the autodoc tool that generates the XML files --- libraries/AP_GPS/AP_GPS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/AP_GPS/AP_GPS.cpp b/libraries/AP_GPS/AP_GPS.cpp index 0ad035ea51..0d49859a5d 100644 --- a/libraries/AP_GPS/AP_GPS.cpp +++ b/libraries/AP_GPS/AP_GPS.cpp @@ -80,7 +80,7 @@ const AP_Param::GroupInfo AP_GPS::var_info[] = { // @Param: INJECT_TO // @DisplayName: Destination for GPS_INJECT_DATA MAVLink packets // @Description: The GGS can send raw serial packets to inject data to multiple GPSes. - // @Values: 0:send to first GPS, 1:send to 2nd GPS, 127:send to all + // @Values: 0:send to first GPS,1:send to 2nd GPS,127:send to all AP_GROUPINFO("INJECT_TO", 7, AP_GPS, _inject_to, GPS_RTK_INJECT_TO_ALL), // @Param: SBP_LOGMASK @@ -101,7 +101,7 @@ const AP_Param::GroupInfo AP_GPS::var_info[] = { // @DisplayName: GNSS system configuration // @Description: Bitmask for what GNSS system to use (all unchecked or zero to leave GPS as configured) // @Values: 0:Leave as currently configured, 1:GPS-NoSBAS, 3:GPS+SBAS, 4:Galileo-NoSBAS, 6:Galileo+SBAS, 8:Beidou, 51:GPS+IMES+QZSS+SBAS (Japan Only), 64:GLONASS, 66:GLONASS+SBAS, 67:GPS+GLONASS+SBAS - // @Bitmask: 0:GPS, 1:SBAS, 2:Galileo, 3:Beidou, 4:IMES, 5:QZSS, 6:GLOSNASS + // @Bitmask: 0:GPS,1:SBAS,2:Galileo,3:Beidou,4:IMES,5:QZSS,6:GLOSNASS // @User: Advanced // @RebootRequired: True AP_GROUPINFO("GNSS_MODE", 10, AP_GPS, _gnss_mode, 0),