stm32l1xx_hal_msp_template.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**
  2. ******************************************************************************
  3. * @file stm32l1xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 5-September-2014
  7. * @brief HAL BSP 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 "stm32l1xx_hal.h"
  50. /** @addtogroup STM32L1xx_HAL_Driver
  51. * @{
  52. */
  53. /** @defgroup HAL_MSP 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_Exported_Functions HAL MSP Exported Functions
  64. * @{
  65. */
  66. /**
  67. * @brief Initializes the Global MSP.
  68. * @retval None
  69. */
  70. void HAL_MspInit(void)
  71. {
  72. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  73. modified by the user
  74. */
  75. }
  76. /**
  77. * @brief DeInitializes the Global MSP.
  78. * @retval None
  79. */
  80. void HAL_MspDeInit(void)
  81. {
  82. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  83. modified by the user
  84. */
  85. }
  86. /**
  87. * @brief Initializes the PPP MSP.
  88. * @retval None
  89. */
  90. void HAL_PPP_MspInit(void)
  91. {
  92. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  93. modified by the user
  94. */
  95. }
  96. /**
  97. * @brief DeInitializes the PPP MSP.
  98. * @retval None
  99. */
  100. void HAL_PPP_MspDeInit(void)
  101. {
  102. /* NOTE : This function is generated automatically by MicroXplorer and eventually
  103. modified by the user
  104. */
  105. }
  106. /**
  107. * @}
  108. */
  109. /**
  110. * @}
  111. */
  112. /**
  113. * @}
  114. */
  115. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/