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.
 
 
 

102 lines
2.8 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32wbxx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @brief This file contains the HAL System and Peripheral (PPP) MSP initialization
  6. * and de-initialization functions.
  7. * It should be copied to the application folder and renamed into 'stm32wbxx_hal_msp.c'.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  12. * All rights reserved.</center></h2>
  13. *
  14. * This software component is licensed by ST under BSD 3-Clause license,
  15. * the "License"; You may not use this file except in compliance with the
  16. * License. You may obtain a copy of the License at:
  17. * opensource.org/licenses/BSD-3-Clause
  18. *
  19. ******************************************************************************
  20. */
  21. /* Includes ------------------------------------------------------------------*/
  22. #include "stm32wbxx_hal.h"
  23. /** @addtogroup STM32WBxx_HAL_Driver
  24. * @{
  25. */
  26. /** @defgroup HAL_MSP HAL MSP
  27. * @brief HAL MSP module.
  28. * @{
  29. */
  30. /* Private typedef -----------------------------------------------------------*/
  31. /* Private define ------------------------------------------------------------*/
  32. /* Private macro -------------------------------------------------------------*/
  33. /* Private variables ---------------------------------------------------------*/
  34. /* Private function prototypes -----------------------------------------------*/
  35. /* Private functions ---------------------------------------------------------*/
  36. /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
  37. * @{
  38. */
  39. /**
  40. * @brief Initializes the Global MSP.
  41. * @note This function is called from HAL_Init() function to perform system
  42. * level initialization (GPIOs, clock, DMA, interrupt).
  43. * @retval None
  44. */
  45. void HAL_MspInit(void)
  46. {
  47. }
  48. /**
  49. * @brief DeInitializes the Global MSP.
  50. * @note This functiona is called from HAL_DeInit() function to perform system
  51. * level de-initialization (GPIOs, clock, DMA, interrupt).
  52. * @retval None
  53. */
  54. void HAL_MspDeInit(void)
  55. {
  56. }
  57. /**
  58. * @brief Initializes the PPP MSP.
  59. * @note This functiona is called from HAL_PPP_Init() function to perform
  60. * peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
  61. * @retval None
  62. */
  63. void HAL_PPP_MspInit(void)
  64. {
  65. }
  66. /**
  67. * @brief DeInitializes the PPP MSP.
  68. * @note This functiona is called from HAL_PPP_DeInit() function to perform
  69. * peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
  70. * @retval None
  71. */
  72. void HAL_PPP_MspDeInit(void)
  73. {
  74. }
  75. /**
  76. * @}
  77. */
  78. /**
  79. * @}
  80. */
  81. /**
  82. * @}
  83. */
  84. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/