Skip to content

Commit a2d8d79

Browse files
mindneverf5soh
authored andcommitted
Merged in mindnever/librepilot/LP-512-STM32F30x_StdPeriph_And_STM32_USB-FS-Device_Driver (pull request #427)
LP-512 STM32F30x StdPeriph And STM32 USB FS Device Driver Approved-by: Lalanne Laurent <f5soh@free.fr> Approved-by: Vladimir Zidar <mr_w@mindnever.org>
2 parents 704b1f0 + b87c8f4 commit a2d8d79

66 files changed

Lines changed: 56283 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

flight/pios/stm32f30x/libraries/.no-auto-format

Whitespace-only changes.

flight/pios/stm32f30x/libraries/CMSIS3/Device/ST/STM32F30x/Include/stm32f30x.h

Lines changed: 9086 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
/**
2+
******************************************************************************
3+
* @file system_stm32f30x.h
4+
* @author MCD Application Team
5+
* @version V1.2.2
6+
* @date 27-February-2015
7+
* @brief CMSIS Cortex-M4 Device System Source File for STM32F30x devices.
8+
******************************************************************************
9+
* @attention
10+
*
11+
* <h2><center>&copy; COPYRIGHT 2015 STMicroelectronics</center></h2>
12+
*
13+
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
14+
* You may not use this file except in compliance with the License.
15+
* You may obtain a copy of the License at:
16+
*
17+
* http://www.st.com/software_license_agreement_liberty_v2
18+
*
19+
* Unless required by applicable law or agreed to in writing, software
20+
* distributed under the License is distributed on an "AS IS" BASIS,
21+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22+
* See the License for the specific language governing permissions and
23+
* limitations under the License.
24+
*
25+
******************************************************************************
26+
*/
27+
28+
/** @addtogroup CMSIS
29+
* @{
30+
*/
31+
32+
/** @addtogroup stm32f30x_system
33+
* @{
34+
*/
35+
36+
/**
37+
* @brief Define to prevent recursive inclusion
38+
*/
39+
#ifndef __SYSTEM_STM32F30X_H
40+
#define __SYSTEM_STM32F30X_H
41+
42+
#ifdef __cplusplus
43+
extern "C" {
44+
#endif
45+
46+
/* Exported types ------------------------------------------------------------*/
47+
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
48+
/* Exported constants --------------------------------------------------------*/
49+
/* Exported macro ------------------------------------------------------------*/
50+
/* Exported functions ------------------------------------------------------- */
51+
52+
/** @addtogroup STM32F30x_System_Exported_Functions
53+
* @{
54+
*/
55+
56+
extern void SystemInit(void);
57+
extern void SystemCoreClockUpdate(void);
58+
59+
/**
60+
* @}
61+
*/
62+
63+
#ifdef __cplusplus
64+
}
65+
#endif
66+
67+
#endif /*__SYSTEM_STM32F30X_H */
68+
69+
/**
70+
* @}
71+
*/
72+
73+
/**
74+
* @}
75+
*/
76+
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

flight/pios/stm32f30x/libraries/STM32F30x_StdPeriph_Driver/inc/stm32f30x_adc.h

Lines changed: 820 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)