色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁 > 模擬技術(shù) > 設(shè)計應(yīng)用 > 初學(xué)者USB技術(shù)入門總結(jié)

          初學(xué)者USB技術(shù)入門總結(jié)

          作者: 時間:2012-04-19 來源:網(wǎng)絡(luò) 收藏
          BR> Misceronous status variable initialization
          ------------------------------------------------------------*/
          usb_status.configuration = NULL;
          usb_status.remote_wakeup = 0;
          usb_status.address = 0;
          usb_status.dvcstate = DEFAULT_STATE; /* Device state :DEFAULT */
          usb_status.stall_req = 0;
          #ifdef Debug
          test[conters]='!';
          conters++;
          #endif

          /*------------------------------------------------------------
          Callback to application layer
          ------------------------------------------------------------*/
          (*usb_status.callback)();
          }
          else if (SUSPENDED_INT())
          { /* suspended state */
          /* for USB Rev.1.1
          Transit to suspended state after detect the USB line has kept idle over 3msec.
          After resume detected, end suspend state in 3msec to be able to respond
          the host request.
          */
          CLR_SUSPENDED_STATE();
          #ifdef Debug
          test[conters]='@';
          conters++;
          #endif

          }

          else if (AWAKE_INT())
          { /* Deveice awake state */
          /* AWAKE procedure */

          CLR_AWAKE_STATE(); /* Request clear */
          #ifdef Debug
          test[conters]='#';
          conters++;
          #endif

          }
          else if (USB_BUSRESET_DES_INT())
          { /* USB bus reset deassert */
          /* Procedure for USB bus reset de-assert */

          CLR_BUS_RESET_DES_STATE(); /* Request clear */
          #ifdef Debug
          test[conters]='$';
          conters++;
          #endif

          }

          else if (SOF_INT())
          { /* SOF interrupt status */
          CLR_B_SOF_STATE();
          #ifdef Debug
          test[conters]='%';
          conters++;
          #endif
          /* SOF interrupt status clear */
          } /* SOF interrupt status */

          if (SETUP_RDY_INT())
          { /* setup ready */
          #ifdef Debug
          test[conters]='^';
          conters++;
          #endif

          read_Device_Requests();
          }

          else if(EP1_PKTRDY_INT())
          { /* EP1 packet ready */
          read_FIFO(EP1);
          }
          else if (EP2_PKTRDY_INT())
          { /* EP2 packet ready */

          write_FIFO(EP2);
          }

          else if (EP0_RXPKTRDY_INT())
          { /* EP0 receive packet ready */
          read_FIFO(EP0RX);
          }
          else if (EP0_TXPKTRDY_INT())
          { /* EP0 transmit packet ready */
          write_FIFO(EP0TX);
          }

          }
          計錄的結(jié)果在變量查看中顯示如下:

          首先我解



          關(guān)鍵詞: USB技術(shù) 入門總結(jié)

          評論


          相關(guān)推薦

          技術(shù)專區(qū)

          關(guān)閉