From f2104c97d84606c16d2da3e96beb34f3ff134cc0 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Thu, 13 Feb 2025 22:27:49 +1100 Subject: [PATCH] AP_Mount: mark many functions as __INITFUNC__ ... implying they can go into external flash --- libraries/AP_Mount/AP_Mount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Mount/AP_Mount.h b/libraries/AP_Mount/AP_Mount.h index 342f509326..c183e76cc5 100644 --- a/libraries/AP_Mount/AP_Mount.h +++ b/libraries/AP_Mount/AP_Mount.h @@ -128,7 +128,7 @@ public: }; // init - detect and initialise all mounts - void init(); + __INITFUNC__ void init(); // update - give mount opportunity to update servos. should be called at 10hz or higher void update();