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.
 
 
 

134 lines
4.3 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @version V1.1.0
  6. * @date 19-June-2014
  7. * @brief HAL MSP module.
  8. * This file template is located in the HAL folder and should be copied
  9. * to the user folder.
  10. *
  11. @verbatim
  12. ===============================================================================
  13. ##### How to use this driver #####
  14. ===============================================================================
  15. [..]
  16. This file is generated automatically by MicroXplorer and eventually modified
  17. by the user
  18. @endverbatim
  19. ******************************************************************************
  20. * @attention
  21. *
  22. * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
  23. *
  24. * Redistribution and use in source and binary forms, with or without modification,
  25. * are permitted provided that the following conditions are met:
  26. * 1. Redistributions of source code must retain the above copyright notice,
  27. * this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright notice,
  29. * this list of conditions and the following disclaimer in the documentation
  30. * and/or other materials provided with the distribution.
  31. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  32. * may be used to endorse or promote products derived from this software
  33. * without specific prior written permission.
  34. *
  35. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  36. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  37. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  39. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  40. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  41. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  42. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  43. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  44. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  45. *
  46. ******************************************************************************
  47. */
  48. /* Includes ------------------------------------------------------------------*/
  49. #include "stm32f4xx_hal.h"
  50. /** @addtogroup STM32F4xx_HAL_Driver
  51. * @{
  52. */
  53. /** @defgroup HAL_MSP
  54. * @brief HAL MSP module.
  55. * @{
  56. */
  57. /* Private typedef -----------------------------------------------------------*/
  58. /* Private define ------------------------------------------------------------*/
  59. /* Private macro -------------------------------------------------------------*/
  60. /* Private variables ---------------------------------------------------------*/
  61. /* Private function prototypes -----------------------------------------------*/
  62. /* Private functions ---------------------------------------------------------*/
  63. /** @defgroup HAL_MSP_Private_Functions
  64. * @{
  65. */
  66. /**
  67. * @brief Initializes the Global MSP.
  68. * @param None
  69. * @retval None
  70. */
  71. void HAL_MspInit(void)
  72. {
  73. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  74. modified by the user
  75. */
  76. }
  77. /**
  78. * @brief DeInitializes the Global MSP.
  79. * @param None
  80. * @retval None
  81. */
  82. void HAL_MspDeInit(void)
  83. {
  84. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  85. modified by the user
  86. */
  87. }
  88. /**
  89. * @brief Initializes the PPP MSP.
  90. * @param None
  91. * @retval None
  92. */
  93. void HAL_PPP_MspInit(void)
  94. {
  95. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  96. modified by the user
  97. */
  98. }
  99. /**
  100. * @brief DeInitializes the PPP MSP.
  101. * @param None
  102. * @retval None
  103. */
  104. void HAL_PPP_MspDeInit(void)
  105. {
  106. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  107. modified by the user
  108. */
  109. }
  110. /**
  111. * @}
  112. */
  113. /**
  114. * @}
  115. */
  116. /**
  117. * @}
  118. */
  119. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/