Skip to content

Commit

Permalink
AP_GPS: set max RAWX satellites to be 80
Browse files Browse the repository at this point in the history
  • Loading branch information
bugobliterator committed May 15, 2024
1 parent 20a09dc commit 5bbfbad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions libraries/AP_GPS/AP_GPS_UBLOX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,8 @@ int8_t AP_GPS_UBLOX::find_active_config_index(ConfigKey key) const

return -1;
}

#pragma GCC diagnostic push
#pragma GCC diagnostic error "-Wframe-larger-than=2600"
bool
AP_GPS_UBLOX::_parse_gps(void)
{
Expand Down Expand Up @@ -1851,7 +1852,7 @@ AP_GPS_UBLOX::_parse_gps(void)
}
return false;
}

#pragma GCC diagnostic pop
/*
* handle pps interrupt
*/
Expand Down
2 changes: 1 addition & 1 deletion libraries/AP_GPS/AP_GPS_UBLOX.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

#define UBLOX_RXM_RAW_LOGGING 1
#define UBLOX_MAX_RXM_RAW_SATS 22
#define UBLOX_MAX_RXM_RAWX_SATS 32
#define UBLOX_MAX_RXM_RAWX_SATS 80
#define UBLOX_GNSS_SETTINGS 1
#ifndef UBLOX_TIM_TM2_LOGGING
#define UBLOX_TIM_TM2_LOGGING (BOARD_FLASH_SIZE>1024)
Expand Down

0 comments on commit 5bbfbad

Please sign in to comment.