From 7b9ead48b0b5c406ec4631f448ee3330d7dc2245 Mon Sep 17 00:00:00 2001 From: blckmn Date: Mon, 7 Jul 2025 16:09:52 +1000 Subject: [PATCH] Updated comment (as per @ledvinap) --- src/platform/STM32/include/platform/platform.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/platform/STM32/include/platform/platform.h b/src/platform/STM32/include/platform/platform.h index e1ed8d47d8..adb9e5a677 100644 --- a/src/platform/STM32/include/platform/platform.h +++ b/src/platform/STM32/include/platform/platform.h @@ -479,9 +479,9 @@ extern uint8_t _dmaram_end__; #define FAST_CODE __attribute__((section(".tcm_code"))) #endif // If a particular target is short of ITCM RAM, defining FAST_CODE_PREF in the target.h file will -// cause functions decorated FAST_CODE_PREF to *not* go into ITCM RAM -// but if FAST_CODE_PREF is not defined for the target, FAST_CODE_PREF is an alias to FAST_CODE, and -// functions decorated with FAST_CODE_PREF *will* go into ITCM RAM. +// cause functions decorated FAST_CODE_PREF to *not* go into ITCM RAM but if FAST_CODE_PREF is not +// defined for the target, FAST_CODE_PREF will become an alias to FAST_CODE (in the common post +// header file), and functions decorated with FAST_CODE_PREF *will* go into ITCM RAM. #define FAST_CODE_NOINLINE NOINLINE #endif // USE_ITCM_RAM