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