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.
 
 
 

120 lines
4.1 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @version V1.7.1
  6. * @date 14-April-2017
  7. * @brief This file contains the HAL System and Peripheral (PPP) MSP initialization
  8. * and de-initialization functions.
  9. * It should be copied to the application folder and renamed into 'stm32f4xx_hal_msp.c'.
  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 "stm32f4xx_hal.h"
  41. /** @addtogroup STM32F4xx_HAL_Driver
  42. * @{
  43. */
  44. /** @defgroup HAL_MSP HAL MSP
  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 HAL MSP Private Functions
  55. * @{
  56. */
  57. /**
  58. * @brief Initializes the Global MSP.
  59. * @note This function is called from HAL_Init() function to perform system
  60. * level initialization (GPIOs, clock, DMA, interrupt).
  61. * @retval None
  62. */
  63. void HAL_MspInit(void)
  64. {
  65. }
  66. /**
  67. * @brief DeInitializes the Global MSP.
  68. * @note This functiona is called from HAL_DeInit() function to perform system
  69. * level de-initialization (GPIOs, clock, DMA, interrupt).
  70. * @retval None
  71. */
  72. void HAL_MspDeInit(void)
  73. {
  74. }
  75. /**
  76. * @brief Initializes the PPP MSP.
  77. * @note This functiona is called from HAL_PPP_Init() function to perform
  78. * peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
  79. * @retval None
  80. */
  81. void HAL_PPP_MspInit(void)
  82. {
  83. }
  84. /**
  85. * @brief DeInitializes the PPP MSP.
  86. * @note This functiona is called from HAL_PPP_DeInit() function to perform
  87. * peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
  88. * @retval None
  89. */
  90. void HAL_PPP_MspDeInit(void)
  91. {
  92. }
  93. /**
  94. * @}
  95. */
  96. /**
  97. * @}
  98. */
  99. /**
  100. * @}
  101. */
  102. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/