Tool/software: TI C/C++ Compiler
Hello:
I am trying to use a function call for an embedded FIR function. The FIR Function requires that these two arrays are stacked one after the other.
I define my variables as such:
extern float FIR_IN[1240];
extern float FIR_Coef[241];
I do have a .bss and .global statements defined for each.
FIR_IN has to be in the memory right before FIR_Coef for the FIR function to run correctly, but when I compile and look at the map, it puts them where ever it wants to.
Is there a command structure that will guarantee the positioning of these arrays where I want in memory so that one will follow the other?