Files
zephyr/soc/st/stm32/stm32c0/soc.h
Guillaume Gautier dbc5ed79f5 soc: st: stm32: Migrate STM32C0 series
Port STM32C0 series to HW model v2

Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
2024-03-01 14:17:20 +00:00

27 lines
475 B
C

/*
* Copyright (c) 2023 Benjamin Björnsson <benjamin.bjornsson@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file SoC configuration macros for the STM32C0 family processors.
*
* Based on reference manual:
* STM32C0X advanced ARM ® -based 32-bit MCUs
*
* Chapter 2.2: Memory organization
*/
#ifndef _STM32C0_SOC_H_
#define _STM32C0_SOC_H_
#ifndef _ASMLANGUAGE
#include <stm32c0xx.h>
#endif /* !_ASMLANGUAGE */
#endif /* _STM32C0_SOC_H_ */