diff --git a/main/clientconnection.go b/main/clientconnection.go index 1acfd95b0..e9469a0c8 100644 --- a/main/clientconnection.go +++ b/main/clientconnection.go @@ -93,13 +93,6 @@ func (conn *networkConnection) Capabilities() uint8 { } func (conn *networkConnection) GetDesiredPacketSize() int { - // Garmin Pilot/Stratus 3 compatibility: - // For GP to detect Stratux, the IP has to be set accordingly. However, GP can only handle one GDL90 message per datagram. - // We just assume that if the user configures this IP, then probably to use Garmin Pilot or something else that only supports Stratus 3 - // - and therefore try to behave more like a Stratus 3. - if globalSettings.WiFiIPAddress == "10.29.39.1" { - return 1 - } return 1024 }