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.

CC430F5137

BSP_Init( );

SMPL_Init( NULL );
uart_intfc_init( );

while(1)
{
       len = rx_receive(rx, MAX_APP_PAYLOAD);

      if(len!=0)
      {

            MRFI_DelayMs(1000);
            tx_send_wait(rx, len);

      }
}

以上程序当注释掉 SMPL_Init( NULL ); 后   len = rx_receive(rx, MAX_APP_PAYLOAD);  不能运行、、、、、、、、、怎么办