1 /* 2 * Copyright (c) 2018 Endre Karlson <endre.karlson@gmail.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file SoC configuration macros for the STM32L0 family processors. 9 * 10 * Based on reference manual: 11 * STM32L0X advanced ARM ® -based 32-bit MCUs 12 * 13 * Chapter 2.2: Memory organization 14 */ 15 16 17 #ifndef _STM32L0_SOC_H_ 18 #define _STM32L0_SOC_H_ 19 20 #ifndef _ASMLANGUAGE 21 22 #include <stm32l0xx.h> 23 24 /* Add generated devicetree information and STM32 helper macros */ 25 #include <st_stm32_dt.h> 26 27 #endif /* !_ASMLANGUAGE */ 28 29 #endif /* _STM32L0_SOC_H_ */ 30