1 /* 2 * Copyright (c) 2023 Benjamin Björnsson <benjamin.bjornsson@gmail.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file SoC configuration macros for the STM32C0 family processors. 9 * 10 * Based on reference manual: 11 * STM32C0X advanced ARM ® -based 32-bit MCUs 12 * 13 * Chapter 2.2: Memory organization 14 */ 15 16 17 #ifndef _STM32C0_SOC_H_ 18 #define _STM32C0_SOC_H_ 19 20 #ifndef _ASMLANGUAGE 21 22 #include <stm32c0xx.h> 23 24 #endif /* !_ASMLANGUAGE */ 25 26 #endif /* _STM32C0_SOC_H_ */ 27