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.

MSP-EXP430F5529LP: 使用MSP430ware 里的Filter例程无法完成output buffer初始化

Part Number: MSP-EXP430F5529LP

当我使用filter_ex2_fir_iq31例程,进入debug。

会卡停留在Zero initialize the output buffer里的

      while(count--) WRITE8_ADV(outbuf, 0)

   /*------------------------------------------------------------------------*/
   /* Zero initialize the output buffer.                                     */
   /*------------------------------------------------------------------------*/
   #if __MSP430__
      while(count--) WRITE8_ADV(outbuf, 0);
   #else

      if (USE_MEMSET)
         memset((void*)outbuf, 0, count);
      else
         while(count--) WRITE8_ADV(outbuf, 0);
   #endif
}

这是我的debug界面