1 /* 2 * Copyright (c) 2017 RnDity Sp. z o.o. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file SoC configuration macros for the STM32F0 family processors. 9 * 10 * Based on reference manual: 11 * STM32F030x4/x6/x8/xC, 12 * STM32F070x6/xB advanced ARM ® -based MCUs 13 * 14 * Chapter 2.2: Memory organization 15 */ 16 17 18 #ifndef _STM32F0_SOC_H_ 19 #define _STM32F0_SOC_H_ 20 21 #ifndef _ASMLANGUAGE 22 23 #include <stm32f0xx.h> 24 25 /* Add generated devicetree information and STM32 helper macros */ 26 #include <st_stm32_dt.h> 27 28 #endif /* !_ASMLANGUAGE */ 29 30 #endif /* _STM32F0_SOC_H_ */ 31