usbd_conf.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*!
  2. \file usbd_conf.h
  3. \brief the header file of USB device configuration
  4. \version 2020-08-01, V3.0.0, firmware for GD32F4xx
  5. \version 2022-03-09, V3.1.0, firmware for GD32F4xx
  6. \version 2022-06-30, V3.2.0, firmware for GD32F4xx
  7. */
  8. /*
  9. Copyright (c) 2022, GigaDevice Semiconductor Inc.
  10. Redistribution and use in source and binary forms, with or without modification,
  11. are permitted provided that the following conditions are met:
  12. 1. Redistributions of source code must retain the above copyright notice, this
  13. list of conditions and the following disclaimer.
  14. 2. Redistributions in binary form must reproduce the above copyright notice,
  15. this list of conditions and the following disclaimer in the documentation
  16. and/or other materials provided with the distribution.
  17. 3. Neither the name of the copyright holder nor the names of its contributors
  18. may be used to endorse or promote products derived from this software without
  19. specific prior written permission.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  22. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  23. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  24. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  25. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  27. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  29. OF SUCH DAMAGE.
  30. */
  31. #ifndef __USBD_CONF_H
  32. #define __USBD_CONF_H
  33. #include "usb_conf.h"
  34. #define USBD_CFG_MAX_NUM 1
  35. #define USBD_ITF_MAX_NUM 1
  36. #define CDC_COM_INTERFACE 0
  37. #define USB_STR_DESC_MAX_SIZE 255
  38. #define CDC_DATA_IN_EP EP1_IN /* EP1 for data IN */
  39. #define CDC_DATA_OUT_EP EP3_OUT /* EP3 for data OUT */
  40. #define CDC_CMD_EP EP2_IN /* EP2 for CDC commands */
  41. #define USB_STRING_COUNT 4
  42. #define USB_CDC_CMD_PACKET_SIZE 8 /* Control Endpoint Packet size */
  43. #define APP_RX_DATA_SIZE 2048 /* Total size of IN buffer:
  44. APP_RX_DATA_SIZE*8 / MAX_BAUDARATE * 1000 should be > CDC_IN_FRAME_INTERVAL*8 */
  45. /* CDC endpoints parameters: you can fine tune these values depending on the needed baud rate and performance */
  46. #ifdef USE_USB_HS
  47. #ifdef USE_ULPI_PHY
  48. #define USB_CDC_DATA_PACKET_SIZE 512 /* Endpoint IN & OUT Packet size */
  49. #define USB_CDC_EP_IN_WORKING_SIZE 64 /* Sending a packet to host USB_CDC_DATA_PACKET_SIZE doesn't work, this value does*/
  50. #define CDC_IN_FRAME_INTERVAL 40 /* Number of micro-frames between IN transfers */
  51. #else
  52. #define USB_CDC_DATA_PACKET_SIZE 64 /* Endpoint IN & OUT Packet size */
  53. #define CDC_IN_FRAME_INTERVAL 5 /* Number of frames between IN transfers */
  54. #endif
  55. #else
  56. #define USB_CDC_DATA_PACKET_SIZE 64 /* Endpoint IN & OUT Packet size */
  57. #define CDC_IN_FRAME_INTERVAL 5 /* Number of frames between IN transfers */
  58. #endif /* USE_USB_HS */
  59. #endif /* __USBD_CONF_H */