stm32f1xx_hal_msp_template.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. ******************************************************************************
  3. * @file stm32f1xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @brief HAL BSP module.
  6. * This file template is located in the HAL folder and should be copied
  7. * to the user folder.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; Copyright (c) 2016 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 "stm32f1xx_hal.h"
  23. /** @addtogroup STM32F1xx_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_Exported_Functions HAL MSP Exported Functions
  37. * @{
  38. */
  39. /**
  40. * @brief Initializes the Global MSP.
  41. * @retval None
  42. */
  43. void HAL_MspInit(void)
  44. {
  45. }
  46. /**
  47. * @brief DeInitializes the Global MSP.
  48. * @retval None
  49. */
  50. void HAL_MspDeInit(void)
  51. {
  52. }
  53. /**
  54. * @brief Initializes the PPP MSP.
  55. * @retval None
  56. */
  57. void HAL_PPP_MspInit(void)
  58. {
  59. }
  60. /**
  61. * @brief DeInitializes the PPP MSP.
  62. * @retval None
  63. */
  64. void HAL_PPP_MspDeInit(void)
  65. {
  66. }
  67. /**
  68. * @}
  69. */
  70. /**
  71. * @}
  72. */
  73. /**
  74. * @}
  75. */
  76. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/