1 /*
2  * Copyright (c) 2019 Linaro Limited
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file SoC configuration macros for the STM32WB family processors.
9  *
10  * Based on reference manual:
11  *   TODO: Provide reference when known
12  *
13  * Chapter 2.2.2: Memory map and register boundary addresses
14  */
15 
16 
17 #ifndef _STM32WBX_SOC_H_
18 #define _STM32WBX_SOC_H_
19 
20 #ifndef _ASMLANGUAGE
21 
22 #include <stm32wbxx.h>
23 
24 #endif /* !_ASMLANGUAGE */
25 
26 #endif /* _STM32WBX_SOC_H_ */
27