You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
475 B
26 lines
475 B
/* |
|
* 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_ */
|
|
|