STM32无法在线调试问题

原因在于usb_istr.c中USB挂起引起的。注释掉即可解决

if (fSuspendEnabled)
    {
     // Suspend();//¹ÒÆð
    }
    else
    {
      /* if not possible then resume after xx ms */
      Resume(RESUME_LATER);
    }

猜你喜欢

转载自blog.csdn.net/diyer_zhou/article/details/82657898