23 lines
325 B
C
23 lines
325 B
C
/*
|
|
* Copyright (c) 2023 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file SoC configuration macros for the STM32H5 family processors.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _STM32H5_SOC_H_
|
|
#define _STM32H5_SOC_H_
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <stm32h5xx.h>
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _STM32H5_SOC_H_ */
|