This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

sysbios中如何使用fir16滤波器

Other Parts Discussed in Thread: SYSBIOS

谢读帖,

我是个新手,不太明白  #pragma DATA_SECTION(CH1_dbuffer, "firldb")  分配在储存区域要注意什么法则,

从2833x的例程中想移植fir16的使用到sysbios中。

比如:

#pragma DATA_SECTION(fir, "firfilt")
FIR16 fir= FIR16_DEFAULTS;

#pragma DATA_SECTION(CH1_dbuffer, "firldb")
long CH1_dbuffer[FIR_ORDER+1];

在sysbios中,我想使用fir16,在cmd文件中应该把firfilt放在哪。

把下文这些cmd 文件中的设置如何配制。

firldb align(0x100)> RAML1 PAGE = 1
firfilt : > RAML1 PAGE = 1
coefffilt align(0x100)>RAML2 PAGE = 1

谢谢 。