打印

STM32 usbOTG

[复制链接]
1463|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
wangjun2012|  楼主 | 2012-11-26 13:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
USB_OTG_Status OTGD_FS_WritePacket(uint8_t *src, uint8_t ch_ep_num, uint16_t bytes)
{
  USB_OTG_Status status = USB_OTG_OK;
  uint32_t dword_count , i;
  __IO uint32_t *fifo;
  /* Find the DWORD length, padded by extra bytes as neccessary if MPS
   * is not a multiple of DWORD */
  dword_count =  (bytes + 3) / 4;
  fifo = core_regs.data_fifo[ch_ep_num];
  for (i = 0; i < dword_count; i++, src += 4)
  {
    WRITE_REG32( fifo, *((__packed uint32_t *)src) );
  }
  return status;
执行以上函数,PC读取数据失败,会是什么原因造成的?
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

6

主题

48

帖子

0

粉丝