From 32d5e58b7f64d3d97a57074b444b4b98f4a31bb0 Mon Sep 17 00:00:00 2001 From: Adrian Batzill Date: Sun, 22 May 2022 16:12:14 +0100 Subject: [PATCH] Revert "Garmin Pilot compatibility by changing IP Address to 10.29.39.1" This reverts commit 258ca7fc0e93bcd6efc0c7a3cf1de284fc814026. --- main/clientconnection.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/main/clientconnection.go b/main/clientconnection.go index 1acfd95b..e9469a0c 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 }