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.

DM6437 方波

 void main( void )
{
    /* Initialize BSL */
    EVMDM6437_init( );
      EVMDM6437_GPIO_init(); // BSL初始化GPIO
      EVMDM6437_GPIO_setDir(102,0); // 设置GPIO管脚为输出
      while(1)
     {
     EVMDM6437_GPIO_setOutput(102,1); // 设置GPIO管脚输出高
     _waitusec( 500 );
     EVMDM6437_GPIO_setOutput(102,0); // 设置GPIO管脚输出低
     _waitusec( 500 );
     }
    printf( "\n***ALL Tests Passed***\n" );
    SW_BREAKPOINT;
}
采用这个代码输出1K的方波,在示波器上面观察的时候一开始有方波,但一会儿方波没了,怎么回事?求大神赐教