MG32L003 Standard Peripherals Firmware Library
system_mg32l003.h
1 /******************************************************************************
2  * @file system_mg32l003.h
3  * @brief CMSIS Device System Header File for
4  * MG32L003 Device
5  * @version V0.0.5
6  * @date 13-August-2024
7  ******************************************************************************/
8 /*
9  * Copyright (c) 2009-2018 Arm Limited. All rights reserved.
10  *
11  * SPDX-License-Identifier: Apache-2.0
12  *
13  * Licensed under the Apache License, Version 2.0 (the License); you may
14  * not use this file except in compliance with the License.
15  * You may obtain a copy of the License at
16  *
17  * www.apache.org/licenses/LICENSE-2.0
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, WITHOUT
21  * 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 #ifndef __SYSTEM_MG32L003_H
27 #define __SYSTEM_MG32L003_H
28 
29 #ifdef __cplusplus
30  extern "C" {
31 #endif
32 
33 extern uint32_t SystemCoreClock;
41 extern void SystemInit (void);
42 
43 
49 extern void SystemCoreClockUpdate (void);
50 
51 #ifdef __cplusplus
52 }
53 #endif
54 
55 #endif /* __SYSTEM_MG32L003_H */
void SystemCoreClockUpdate(void)
Update SystemCoreClock variable.
Definition: system_mg32l003.c:205
uint32_t SystemCoreClock
Definition: system_mg32l003.c:115
void SystemInit(void)
Setup the microcontroller system.
Definition: system_mg32l003.c:147