mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 16:51:56 +00:00
Final cleanup to unify soc.h files and remove remaining non-generic LL headers. Signed-off-by: Martin Jäger <martin@libre.solar>
20 lines
333 B
C
20 lines
333 B
C
/*
|
|
* Copyright (c) 2019 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _STM32F7_SOC_H_
|
|
#define _STM32F7_SOC_H_
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <stm32h7xx.h>
|
|
|
|
/* Add generated devicetree information and STM32 helper macros */
|
|
#include <st_stm32_dt.h>
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _STM32F7_SOC_H7_ */
|