训练营PLSR题目
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.
 
 
 
 
 
 

101 lines
2.7 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_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 'stm32f4xx_hal_msp.c'.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2017 STMicroelectronics.
  12. * All rights reserved.
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "stm32f4xx_hal.h"
  22. /** @addtogroup STM32F4xx_HAL_Driver
  23. * @{
  24. */
  25. /** @defgroup HAL_MSP HAL MSP
  26. * @brief HAL MSP module.
  27. * @{
  28. */
  29. /* Private typedef -----------------------------------------------------------*/
  30. /* Private define ------------------------------------------------------------*/
  31. /* Private macro -------------------------------------------------------------*/
  32. /* Private variables ---------------------------------------------------------*/
  33. /* Private function prototypes -----------------------------------------------*/
  34. /* Private functions ---------------------------------------------------------*/
  35. /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
  36. * @{
  37. */
  38. /**
  39. * @brief Initializes the Global MSP.
  40. * @note This function is called from HAL_Init() function to perform system
  41. * level initialization (GPIOs, clock, DMA, interrupt).
  42. * @retval None
  43. */
  44. void HAL_MspInit(void)
  45. {
  46. }
  47. /**
  48. * @brief DeInitializes the Global MSP.
  49. * @note This functiona is called from HAL_DeInit() function to perform system
  50. * level de-initialization (GPIOs, clock, DMA, interrupt).
  51. * @retval None
  52. */
  53. void HAL_MspDeInit(void)
  54. {
  55. }
  56. /**
  57. * @brief Initializes the PPP MSP.
  58. * @note This functiona is called from HAL_PPP_Init() function to perform
  59. * peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
  60. * @retval None
  61. */
  62. void HAL_PPP_MspInit(void)
  63. {
  64. }
  65. /**
  66. * @brief DeInitializes the PPP MSP.
  67. * @note This functiona is called from HAL_PPP_DeInit() function to perform
  68. * peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
  69. * @retval None
  70. */
  71. void HAL_PPP_MspDeInit(void)
  72. {
  73. }
  74. /**
  75. * @}
  76. */
  77. /**
  78. * @}
  79. */
  80. /**
  81. * @}
  82. */