Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | mjames | 1 | /** |
| 2 | ****************************************************************************** |
||
| 3 | * @file stm32f1xx_hal_msp_template.c |
||
| 4 | * @author MCD Application Team |
||
| 5 | mjames | 5 | * @version V1.0.4 |
| 6 | * @date 29-April-2016 |
||
| 2 | mjames | 7 | * @brief HAL BSP module. |
| 8 | * This file template is located in the HAL folder and should be copied |
||
| 9 | * to the user folder. |
||
| 10 | ****************************************************************************** |
||
| 11 | * @attention |
||
| 12 | * |
||
| 5 | mjames | 13 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
| 2 | mjames | 14 | * |
| 15 | * Redistribution and use in source and binary forms, with or without modification, |
||
| 16 | * are permitted provided that the following conditions are met: |
||
| 17 | * 1. Redistributions of source code must retain the above copyright notice, |
||
| 18 | * this list of conditions and the following disclaimer. |
||
| 19 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
||
| 20 | * this list of conditions and the following disclaimer in the documentation |
||
| 21 | * and/or other materials provided with the distribution. |
||
| 22 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
||
| 23 | * may be used to endorse or promote products derived from this software |
||
| 24 | * without specific prior written permission. |
||
| 25 | * |
||
| 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||
| 27 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||
| 28 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
||
| 29 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
||
| 30 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
||
| 31 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
||
| 32 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||
| 33 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
||
| 34 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||
| 35 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 36 | * |
||
| 37 | ****************************************************************************** |
||
| 38 | */ |
||
| 39 | |||
| 40 | /* Includes ------------------------------------------------------------------*/ |
||
| 41 | #include "stm32f1xx_hal.h" |
||
| 42 | |||
| 43 | /** @addtogroup STM32F1xx_HAL_Driver |
||
| 44 | * @{ |
||
| 45 | */ |
||
| 46 | |||
| 47 | /** @defgroup HAL_MSP HAL_MSP |
||
| 48 | * @brief HAL MSP module. |
||
| 49 | * @{ |
||
| 50 | */ |
||
| 51 | |||
| 52 | /* Private typedef -----------------------------------------------------------*/ |
||
| 53 | /* Private define ------------------------------------------------------------*/ |
||
| 54 | /* Private macro -------------------------------------------------------------*/ |
||
| 55 | /* Private variables ---------------------------------------------------------*/ |
||
| 56 | /* Private function prototypes -----------------------------------------------*/ |
||
| 57 | /* Private functions ---------------------------------------------------------*/ |
||
| 58 | |||
| 59 | /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions |
||
| 60 | * @{ |
||
| 61 | */ |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @brief Initializes the Global MSP. |
||
| 65 | * @retval None |
||
| 66 | */ |
||
| 67 | void HAL_MspInit(void) |
||
| 68 | { |
||
| 5 | mjames | 69 | |
| 2 | mjames | 70 | } |
| 71 | |||
| 72 | /** |
||
| 73 | * @brief DeInitializes the Global MSP. |
||
| 74 | * @retval None |
||
| 75 | */ |
||
| 76 | void HAL_MspDeInit(void) |
||
| 77 | { |
||
| 5 | mjames | 78 | |
| 2 | mjames | 79 | } |
| 80 | |||
| 81 | /** |
||
| 82 | * @brief Initializes the PPP MSP. |
||
| 83 | * @retval None |
||
| 84 | */ |
||
| 85 | void HAL_PPP_MspInit(void) |
||
| 86 | { |
||
| 5 | mjames | 87 | |
| 2 | mjames | 88 | } |
| 89 | |||
| 90 | /** |
||
| 91 | * @brief DeInitializes the PPP MSP. |
||
| 92 | * @retval None |
||
| 93 | */ |
||
| 94 | void HAL_PPP_MspDeInit(void) |
||
| 95 | { |
||
| 5 | mjames | 96 | |
| 2 | mjames | 97 | } |
| 98 | |||
| 99 | /** |
||
| 100 | * @} |
||
| 101 | */ |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @} |
||
| 105 | */ |
||
| 106 | |||
| 107 | /** |
||
| 108 | * @} |
||
| 109 | */ |
||
| 110 | |||
| 111 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |