From 3802ca217e178c4d1a77381afddc9653d06efd54 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 25 Feb 2020 13:42:33 +1100 Subject: [PATCH] ArduCopter: move AP_PARM_KEY_DUMP function up to AP_Vehicle base class Common to all vehicles now, including Tracker --- ArduCopter/system.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ArduCopter/system.cpp b/ArduCopter/system.cpp index 76fc8f3083..8ee7cc81b2 100644 --- a/ArduCopter/system.cpp +++ b/ArduCopter/system.cpp @@ -224,10 +224,6 @@ void Copter::init_ardupilot() // flag that initialisation has completed ap.initialised = true; - -#if AP_PARAM_KEY_DUMP - AP_Param::show_all(hal.console, true); -#endif }