Subversion Repositories DashDisplay

Rev

Go to most recent revision | Details | 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
  * @version V1.0.1
6
  * @date    31-July-2015
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
  @verbatim
12
 ===============================================================================
13
                     ##### How to use this driver #####
14
 ===============================================================================
15
    [..]
16
    This file is generated automatically by MicroXplorer and eventually modified
17
    by the user
18
 
19
  @endverbatim
20
  ******************************************************************************
21
  * @attention
22
  *
23
  * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
24
  *
25
  * Redistribution and use in source and binary forms, with or without modification,
26
  * are permitted provided that the following conditions are met:
27
  *   1. Redistributions of source code must retain the above copyright notice,
28
  *      this list of conditions and the following disclaimer.
29
  *   2. Redistributions in binary form must reproduce the above copyright notice,
30
  *      this list of conditions and the following disclaimer in the documentation
31
  *      and/or other materials provided with the distribution.
32
  *   3. Neither the name of STMicroelectronics nor the names of its contributors
33
  *      may be used to endorse or promote products derived from this software
34
  *      without specific prior written permission.
35
  *
36
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
37
  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39
  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
40
  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41
  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
42
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
43
  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46
  *
47
  ******************************************************************************  
48
  */
49
 
50
/* Includes ------------------------------------------------------------------*/
51
#include "stm32f1xx_hal.h"
52
 
53
/** @addtogroup STM32F1xx_HAL_Driver
54
  * @{
55
  */
56
 
57
/** @defgroup HAL_MSP HAL_MSP
58
  * @brief HAL MSP module.
59
  * @{
60
  */
61
 
62
/* Private typedef -----------------------------------------------------------*/
63
/* Private define ------------------------------------------------------------*/
64
/* Private macro -------------------------------------------------------------*/
65
/* Private variables ---------------------------------------------------------*/
66
/* Private function prototypes -----------------------------------------------*/
67
/* Private functions ---------------------------------------------------------*/
68
 
69
/** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions
70
  * @{
71
  */
72
 
73
/**
74
  * @brief  Initializes the Global MSP.
75
  * @retval None
76
  */
77
void HAL_MspInit(void)
78
{
79
  /* NOTE : This function is generated automatically by MicroXplorer and eventually  
80
            modified by the user
81
   */
82
}
83
 
84
/**
85
  * @brief  DeInitializes the Global MSP.
86
  * @retval None
87
  */
88
void HAL_MspDeInit(void)
89
{
90
  /* NOTE : This function is generated automatically by MicroXplorer and eventually  
91
            modified by the user
92
   */
93
}
94
 
95
/**
96
  * @brief  Initializes the PPP MSP.
97
  * @retval None
98
  */
99
void HAL_PPP_MspInit(void)
100
{
101
  /* NOTE : This function is generated automatically by MicroXplorer and eventually  
102
            modified by the user
103
   */
104
}
105
 
106
/**
107
  * @brief  DeInitializes the PPP MSP.
108
  * @retval None
109
  */
110
void HAL_PPP_MspDeInit(void)
111
{
112
  /* NOTE : This function is generated automatically by MicroXplorer and eventually  
113
            modified by the user
114
   */
115
}
116
 
117
/**
118
  * @}
119
  */
120
 
121
/**
122
  * @}
123
  */
124
 
125
/**
126
  * @}
127
  */
128
 
129
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/