1 /*
2  * Copyright (c) 2019 Richard Osterloh <richard.osterloh@gmail.com>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file SoC configuration macros for the STM32G4 family processors.
9  *
10  * Based on reference manual:
11  *   STM32G4xx advanced ARM ® -based 32-bit MCUs
12  *
13  * Chapter 2.2: Memory organization
14  */
15 
16 
17 #ifndef _STM32G4_SOC_H_
18 #define _STM32G4_SOC_H_
19 
20 #ifndef _ASMLANGUAGE
21 
22 #include <stm32g4xx.h>
23 
24 #endif /* !_ASMLANGUAGE */
25 
26 #endif /* _STM32G4_SOC_H_ */
27