diff --git a/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs b/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs index 9eaeb83689..698fe0c59e 100644 --- a/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs +++ b/Tools/ArdupilotMegaPlanner/GCSViews/Firmware.cs @@ -510,7 +510,7 @@ namespace ArdupilotMega.GCSViews Console.WriteLine("Detected a " + board); string baseurl = ""; - if (board == "2560") + if (board == "2560" || board == "2560-2") { baseurl = temp.url2560.ToString(); } @@ -605,7 +605,7 @@ namespace ArdupilotMega.GCSViews //port = new ArduinoSTK(); port.BaudRate = 57600; } - else if (board == "2560") + else if (board == "2560" || board == "2560-2") { port = new ArduinoSTKv2(); port.BaudRate = 115200;