From ebbd8c28f533bef8749a9679f254f41a8c519f38 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sun, 19 Apr 2020 23:56:08 -0400 Subject: [PATCH] still want RAM?! --- firmware/controllers/engine_controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/controllers/engine_controller.cpp b/firmware/controllers/engine_controller.cpp index 298d9e036c..0e0edd5e88 100644 --- a/firmware/controllers/engine_controller.cpp +++ b/firmware/controllers/engine_controller.cpp @@ -695,10 +695,10 @@ void initEngineContoller(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX) // help to notice when RAM usage goes up - if a code change adds to RAM usage these variables would fail // linking process which is the way to raise the alarm #ifndef RAM_UNUSED_SIZE -#define RAM_UNUSED_SIZE 12900 +#define RAM_UNUSED_SIZE 12800 #endif #ifndef CCM_UNUSED_SIZE -#define CCM_UNUSED_SIZE 3000 +#define CCM_UNUSED_SIZE 2900 #endif static char UNUSED_RAM_SIZE[RAM_UNUSED_SIZE]; static char UNUSED_CCM_SIZE[CCM_UNUSED_SIZE] CCM_OPTIONAL;