STM32CubeF3/Projects/STM32F302R8-Nucleo/Templates/Src/stm32f3xx_hal_msp.c

92 lines
1.9 KiB
C
Raw Normal View History

2019-05-15 17:57:06 +08:00
/**
******************************************************************************
* @file Templates/Src/stm32f3xx_hal_msp.c
* @author MCD Application Team
* @brief HAL MSP module.
******************************************************************************
* @attention
*
2023-03-08 00:17:52 +08:00
* Copyright (c) 2016 STMicroelectronics.
* All rights reserved.
2019-05-15 17:57:06 +08:00
*
2023-03-08 00:17:52 +08:00
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
2019-05-15 17:57:06 +08:00
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "main.h"
/** @addtogroup STM32F3xx_HAL_Examples
* @{
*/
/** @addtogroup Templates
* @{
*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
/** @defgroup HAL_MSP_Private_Functions
* @{
*/
/**
* @brief Initializes the Global MSP.
* @param None
* @retval None
*/
void HAL_MspInit(void)
{
}
/**
* @brief DeInitializes the Global MSP.
* @param None
* @retval None
*/
void HAL_MspDeInit(void)
{
}
/**
* @brief Initializes the PPP MSP.
* @param None
* @retval None
*/
//void HAL_PPP_MspInit(void)
//{
//}
/**
* @brief DeInitializes the PPP MSP.
* @param None
* @retval None
*/
//void HAL_PPP_MspDeInit(void)
//{
//}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/