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.
 
 
 

124 lines
3.9 KiB

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