mirror of https://github.com/ArduPilot/ardupilot
AP_GPS: use proper macro in array sizes
This commit is contained in:
parent
75527ef567
commit
09c210e10f
|
@ -461,8 +461,8 @@ private:
|
|||
uint16_t delta_time_ms;
|
||||
};
|
||||
// Note allowance for an additional instance to contain blended data
|
||||
GPS_timing timing[GPS_MAX_RECEIVERS+1];
|
||||
GPS_State state[GPS_MAX_RECEIVERS+1];
|
||||
GPS_timing timing[GPS_MAX_INSTANCES];
|
||||
GPS_State state[GPS_MAX_INSTANCES];
|
||||
AP_GPS_Backend *drivers[GPS_MAX_RECEIVERS];
|
||||
AP_HAL::UARTDriver *_port[GPS_MAX_RECEIVERS];
|
||||
|
||||
|
|
Loading…
Reference in New Issue