usbd_conf.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : usbd_conf.h
  5. * @version : v3.0_Cube
  6. * @brief : Header for usbd_conf.c file.
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  11. * All rights reserved.</center></h2>
  12. *
  13. * This software component is licensed by ST under Ultimate Liberty license
  14. * SLA0044, the "License"; You may not use this file except in compliance with
  15. * the License. You may obtain a copy of the License at:
  16. * www.st.com/SLA0044
  17. *
  18. ******************************************************************************
  19. */
  20. /* USER CODE END Header */
  21. /* Define to prevent recursive inclusion -------------------------------------*/
  22. #ifndef __USBD_CONF__H__
  23. #define __USBD_CONF__H__
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include "stm32wbxx.h"
  32. #include "stm32wbxx_hal.h"
  33. /* USER CODE BEGIN INCLUDE */
  34. /* USER CODE END INCLUDE */
  35. /** @addtogroup USBD_OTG_DRIVER
  36. * @brief Driver for Usb device.
  37. * @{
  38. */
  39. /** @defgroup USBD_CONF USBD_CONF
  40. * @brief Configuration file for Usb otg low level driver.
  41. * @{
  42. */
  43. /** @defgroup USBD_CONF_Exported_Variables USBD_CONF_Exported_Variables
  44. * @brief Public variables.
  45. * @{
  46. */
  47. /* Private variables ---------------------------------------------------------*/
  48. /* USER CODE BEGIN PV */
  49. /* USER CODE END PV */
  50. /**
  51. * @}
  52. */
  53. /** @defgroup USBD_CONF_Exported_Defines USBD_CONF_Exported_Defines
  54. * @brief Defines for configuration of the Usb device.
  55. * @{
  56. */
  57. /*---------- -----------*/
  58. #define USBD_MAX_NUM_INTERFACES 1U
  59. /*---------- -----------*/
  60. #define USBD_MAX_NUM_CONFIGURATION 1U
  61. /*---------- -----------*/
  62. #define USBD_MAX_STR_DESC_SIZ 512U
  63. /*---------- -----------*/
  64. #define USBD_DEBUG_LEVEL 0U
  65. /*---------- -----------*/
  66. #define USBD_LPM_ENABLED 1U
  67. /*---------- -----------*/
  68. #define USBD_SELF_POWERED 1U
  69. /****************************************/
  70. /* #define for FS and HS identification */
  71. #define DEVICE_FS 0
  72. /**
  73. * @}
  74. */
  75. /** @defgroup USBD_CONF_Exported_Macros USBD_CONF_Exported_Macros
  76. * @brief Aliases.
  77. * @{
  78. */
  79. /* Memory management macros */
  80. /** Alias for memory allocation. */
  81. #define USBD_malloc (void*)USBD_static_malloc
  82. /** Alias for memory release. */
  83. #define USBD_free USBD_static_free
  84. /** Alias for memory set. */
  85. #define USBD_memset memset
  86. /** Alias for memory copy. */
  87. #define USBD_memcpy memcpy
  88. /** Alias for delay. */
  89. #define USBD_Delay HAL_Delay
  90. /* DEBUG macros */
  91. #if(USBD_DEBUG_LEVEL > 0)
  92. #define USBD_UsrLog(...) \
  93. printf(__VA_ARGS__); \
  94. printf("\n");
  95. #else
  96. #define USBD_UsrLog(...)
  97. #endif
  98. #if(USBD_DEBUG_LEVEL > 1)
  99. #define USBD_ErrLog(...) \
  100. printf("ERROR: "); \
  101. printf(__VA_ARGS__); \
  102. printf("\n");
  103. #else
  104. #define USBD_ErrLog(...)
  105. #endif
  106. #if(USBD_DEBUG_LEVEL > 2)
  107. #define USBD_DbgLog(...) \
  108. printf("DEBUG : "); \
  109. printf(__VA_ARGS__); \
  110. printf("\n");
  111. #else
  112. #define USBD_DbgLog(...)
  113. #endif
  114. /**
  115. * @}
  116. */
  117. /** @defgroup USBD_CONF_Exported_Types USBD_CONF_Exported_Types
  118. * @brief Types.
  119. * @{
  120. */
  121. /**
  122. * @}
  123. */
  124. /** @defgroup USBD_CONF_Exported_FunctionsPrototype USBD_CONF_Exported_FunctionsPrototype
  125. * @brief Declaration of public functions for Usb device.
  126. * @{
  127. */
  128. /* Exported functions -------------------------------------------------------*/
  129. void* USBD_static_malloc(uint32_t size);
  130. void USBD_static_free(void* p);
  131. /**
  132. * @}
  133. */
  134. /**
  135. * @}
  136. */
  137. /**
  138. * @}
  139. */
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. #endif /* __USBD_CONF__H__ */
  144. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/