From 8a7a982bfcb09fc10f014c84d023420801664654 Mon Sep 17 00:00:00 2001 From: Adam M Rivera Date: Tue, 24 Apr 2012 13:33:24 -0500 Subject: [PATCH] MainV2.cs: Added call to parameter parser at application bootstrap. --- Tools/ArdupilotMegaPlanner/MainV2.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tools/ArdupilotMegaPlanner/MainV2.cs b/Tools/ArdupilotMegaPlanner/MainV2.cs index 83e817b7e1..bc811c7c38 100644 --- a/Tools/ArdupilotMegaPlanner/MainV2.cs +++ b/Tools/ArdupilotMegaPlanner/MainV2.cs @@ -20,6 +20,7 @@ using System.Speech.Synthesis; using System.Globalization; using System.Threading; using System.Net.Sockets; +using ArdupilotMega.Utilities; using IronPython.Hosting; using log4net; using ArdupilotMega.Controls; @@ -1227,6 +1228,9 @@ namespace ArdupilotMega log.Error("Update check failed", ex); } } + + // TODO: Move this to a more appropriate place, like right after CheckForUpdate(); + ParameterInformationParser.GetParameterInformation(); }