您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

40 行
1.6 KiB

  1. /*
  2. * This file is part of the libopencm3 project.
  3. *
  4. * Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
  5. *
  6. * This library is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this library. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __USB_DWC_COMMON_H_
  20. #define __USB_DWC_COMMON_H_
  21. void dwc_set_address(usbd_device *usbd_dev, uint8_t addr);
  22. void dwc_ep_setup(usbd_device *usbd_dev, uint8_t addr, uint8_t type,
  23. uint16_t max_size,
  24. void (*callback)(usbd_device *usbd_dev, uint8_t ep));
  25. void dwc_endpoints_reset(usbd_device *usbd_dev);
  26. void dwc_ep_stall_set(usbd_device *usbd_dev, uint8_t addr, uint8_t stall);
  27. uint8_t dwc_ep_stall_get(usbd_device *usbd_dev, uint8_t addr);
  28. void dwc_ep_nak_set(usbd_device *usbd_dev, uint8_t addr, uint8_t nak);
  29. uint16_t dwc_ep_write_packet(usbd_device *usbd_dev, uint8_t addr,
  30. const void *buf, uint16_t len);
  31. uint16_t dwc_ep_read_packet(usbd_device *usbd_dev, uint8_t addr,
  32. void *buf, uint16_t len);
  33. void dwc_poll(usbd_device *usbd_dev);
  34. void dwc_disconnect(usbd_device *usbd_dev, bool disconnected);
  35. #endif /* __USB_DWC_COMMON_H_ */