Quantcast
Channel: MSP 低功耗微控制器论坛 - 最近的话题
Viewing all articles
Browse latest Browse all 3634

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

$
0
0
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界面


Viewing all articles
Browse latest Browse all 3634

Trending Articles