From 2596875ceb1a39e9a8f6493e0a2e55395ce7261c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 24 Oct 2020 12:24:26 +1100 Subject: [PATCH] AP_HAL: removed fs_init() this must go via AP_Filesystem --- libraries/AP_HAL/Util.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libraries/AP_HAL/Util.h b/libraries/AP_HAL/Util.h index ee0ff0b73f..177c87001e 100644 --- a/libraries/AP_HAL/Util.h +++ b/libraries/AP_HAL/Util.h @@ -179,11 +179,6 @@ public: */ virtual uint32_t available_memory(void) { return 4096; } - /* - initialise (or re-initialise) filesystem storage - */ - virtual bool fs_init(void) { return false; } - // attempt to trap the processor, presumably to enter an attached debugger virtual bool trap() const { return false; }