Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

176 lines
3.9 KiB

  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : usbd_conf.h
  5. * @version : v2.0_Cube
  6. * @brief : Header for usbd_conf.c file.
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * <h2><center>&copy; Copyright (c) 2020 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 "main.h"
  32. #include "stm32l1xx.h"
  33. #include "stm32l1xx_hal.h"
  34. /* USER CODE BEGIN INCLUDE */
  35. /* USER CODE END INCLUDE */
  36. /** @addtogroup USBD_OTG_DRIVER
  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. /**
  48. * @}
  49. */
  50. /** @defgroup USBD_CONF_Exported_Defines USBD_CONF_Exported_Defines
  51. * @brief Defines for configuration of the Usb device.
  52. * @{
  53. */
  54. /*---------- -----------*/
  55. #define USBD_MAX_NUM_INTERFACES 1U
  56. /*---------- -----------*/
  57. #define USBD_MAX_NUM_CONFIGURATION 1U
  58. /*---------- -----------*/
  59. #define USBD_MAX_STR_DESC_SIZ 512U
  60. /*---------- -----------*/
  61. #define USBD_DEBUG_LEVEL 0U
  62. /*---------- -----------*/
  63. #define USBD_SELF_POWERED 1U
  64. /****************************************/
  65. /* #define for FS and HS identification */
  66. #define DEVICE_FS 0
  67. /**
  68. * @}
  69. */
  70. /** @defgroup USBD_CONF_Exported_Macros USBD_CONF_Exported_Macros
  71. * @brief Aliases.
  72. * @{
  73. */
  74. /* Memory management macros */
  75. /** Alias for memory allocation. */
  76. #define USBD_malloc (uint32_t *)USBD_static_malloc
  77. /** Alias for memory release. */
  78. #define USBD_free USBD_static_free
  79. /** Alias for memory set. */
  80. #define USBD_memset /* Not used */
  81. /** Alias for memory copy. */
  82. #define USBD_memcpy /* Not used */
  83. /** Alias for delay. */
  84. #define USBD_Delay HAL_Delay
  85. /* For footprint reasons and since only one allocation is handled in the HID class
  86. driver, the malloc/free is changed into a static allocation method */
  87. void *USBD_static_malloc(uint32_t size);
  88. void USBD_static_free(void *p);
  89. /* DEBUG macros */
  90. #if (USBD_DEBUG_LEVEL > 0)
  91. #define USBD_UsrLog(...) printf(__VA_ARGS__);\
  92. printf("\n");
  93. #else
  94. #define USBD_UsrLog(...)
  95. #endif
  96. #if (USBD_DEBUG_LEVEL > 1)
  97. #define USBD_ErrLog(...) printf("ERROR: ") ;\
  98. printf(__VA_ARGS__);\
  99. printf("\n");
  100. #else
  101. #define USBD_ErrLog(...)
  102. #endif
  103. #if (USBD_DEBUG_LEVEL > 2)
  104. #define USBD_DbgLog(...) printf("DEBUG : ") ;\
  105. printf(__VA_ARGS__);\
  106. printf("\n");
  107. #else
  108. #define USBD_DbgLog(...)
  109. #endif
  110. /**
  111. * @}
  112. */
  113. /** @defgroup USBD_CONF_Exported_Types USBD_CONF_Exported_Types
  114. * @brief Types.
  115. * @{
  116. */
  117. /**
  118. * @}
  119. */
  120. /** @defgroup USBD_CONF_Exported_FunctionsPrototype USBD_CONF_Exported_FunctionsPrototype
  121. * @brief Declaration of public functions for Usb device.
  122. * @{
  123. */
  124. /* Exported functions -------------------------------------------------------*/
  125. /**
  126. * @}
  127. */
  128. /**
  129. * @}
  130. */
  131. /**
  132. * @}
  133. */
  134. #ifdef __cplusplus
  135. }
  136. #endif
  137. #endif /* __USBD_CONF__H__ */
  138. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/