You incorrectly presume a static inline function always inherits the section of the caller. Your description starts off mostly right ...
Johannes von Löwis said: As those functions ( IPC_waitForFlag, IPC_ackFlagRtoL , ...) are declared static inline…
Hi W Z,
W Z said: Due to the On-Chip RAM is not enough to use, so we need to assign some functions in On-Chip RAM of M4F and Some functions on DDR.
Are you put the .text section in both IRAM and DDR? You can keep the .text section in either DDR or…
Hi Joe,
Please have a look at similar thread for partially running a function in RAM and others in FLASH.
(+) TMS320F280039C: memcpy function and #pragma CODE_SECTION(".TI.ramfunc") - C2000 microcontrollers forum - C2000 ︎ microcontrollers - TI E2E…
Hi,
In this thread i am discussing step by step process to execute a function in RAM, for this purpose i am using one blinky routine to run in RAM.
1. First, we have to declare a section called "blinky_section" and should mention this section LOAD…
Hi,
User can define their function in RAM. An example how to define functions in RAM.
__attribute__((section(".TI.ramfunc"))) __attribute__((noinline)) void appfunctions(void){}
Best regards,
Cash Hao
Part Number: MSP430FR5989-EP Tool/software: Hello,
I am using macros for some making calculations. I got a warning on my function like recommending to ram during run time so I would like to make this calculations by using RAM. How do I run my function…
Part Number: F29H859TU-Q1 Hi Expert,
I have question about the communication speed of the C2000 RAM trace function (internal RAM data capture).
In internal RAM data trace (capture) tests using third-generation C2000 products, the results were…
Falk Sobe said: I found very little information about the compiler generated "__sti__" functions.
Please read the latter part of this forum post . Focus on understanding the part about the functions, auto-generated by the compiler, which invoke the…
Part Number: TMS320F2800137 Tool/software: HI expert:
when setting as follow
#pragma CODE_SECTION(motor1CtrlISR, "ctrlfuncs");
in motor1CtrlISR function,a ll functions and their related sub functions are running in ram?
such as DCDCUnderVolt_Detect…