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.

TM4C内部有DSP么?听说cortex-m4自带dsp?



如果有的化谁能给个高阶iir或者fir滤波的历程谢谢,要有头文件和头文件来源谢谢

  • TIVA WAE包中的IQmath 包含了高精度数学运算函数库,你可以看看这里有没有,另外TM4C系列确实支持硬件浮点运算的

  • 你好,

    TI的M4是带浮点运算的M4芯片,你可以使用浮点运算单元来计算IIR或者FIR。

    只需要在程序的一开始打开浮点运算单元即可,后面涉及到乘除运算,编译器自己会调用。

    //
    // Enable lazy stacking for interrupt handlers. This allows floating-point
    // instructions to be used within interrupt handlers, but at the expense of
    // extra stack usage.
    //
    ROM_FPULazyStackingEnable();