Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:08

0001 /**
0002   ******************************************************************************
0003   * @file    stm32h7xx_hal_msp_template.c
0004   * @author  MCD Application Team
0005   * @brief   HAL MSP module.
0006   *          This file template is located in the HAL folder and should be copied
0007   *          to the user folder.
0008   *
0009   ******************************************************************************
0010   * @attention
0011   *
0012   * Copyright (c) 2017 STMicroelectronics.
0013   * All rights reserved.
0014   *
0015   * This software is licensed under terms that can be found in the LICENSE file
0016   * in the root directory of this software component.
0017   * If no LICENSE file comes with this software, it is provided AS-IS.
0018   *
0019   ******************************************************************************
0020   @verbatim
0021  ===============================================================================
0022                      ##### How to use this driver #####
0023  ===============================================================================
0024     [..]
0025 
0026   @endverbatim
0027   ******************************************************************************
0028   */
0029 
0030 /* Includes ------------------------------------------------------------------*/
0031 #include "stm32h7xx_hal.h"
0032 
0033 /** @addtogroup STM32H7xx_HAL_Driver
0034   * @{
0035   */
0036 
0037 /** @defgroup HAL_MSP HAL MSP
0038   * @ingroup RTEMSBSPsARMSTM32H7
0039   * @brief HAL MSP module.
0040   * @{
0041   */
0042 
0043 /* Private typedef -----------------------------------------------------------*/
0044 /* Private define ------------------------------------------------------------*/
0045 /* Private macro -------------------------------------------------------------*/
0046 /* Private variables ---------------------------------------------------------*/
0047 /* Private function prototypes -----------------------------------------------*/
0048 /* Private functions ---------------------------------------------------------*/
0049 
0050 /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
0051   * @ingroup RTEMSBSPsARMSTM32H7
0052   * @{
0053   */
0054 
0055 /**
0056   * @brief  Initializes the Global MSP.
0057   * @retval None
0058   */
0059 void HAL_MspInit(void)
0060 {
0061 
0062 }
0063 
0064 /**
0065   * @brief  DeInitializes the Global MSP.
0066   * @retval None
0067   */
0068 void HAL_MspDeInit(void)
0069 {
0070 
0071 }
0072 
0073 /**
0074   * @brief  Initializes the PPP MSP.
0075   * @retval None
0076   */
0077 void HAL_PPP_MspInit(void)
0078 {
0079 
0080 }
0081 
0082 /**
0083   * @brief  DeInitializes the PPP MSP.
0084   * @retval None
0085   */
0086 void HAL_PPP_MspDeInit(void)
0087 {
0088 
0089 }
0090 
0091 /**
0092   * @}
0093   */
0094 
0095 /**
0096   * @}
0097   */
0098 
0099 /**
0100   * @}
0101   */
0102 
0103