mirror of https://github.com/ArduPilot/ardupilot
AP_GPS: use proper macro in array sizes
This commit is contained in:
parent
2be3797f9e
commit
1d27193efb
|
@ -471,8 +471,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