1 /* 2 * Copyright (c) 2023 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file SoC configuration macros for the STM32WBA series processors. 9 * 10 */ 11 12 13 #ifndef _STM32WBA_SOC_H_ 14 #define _STM32WBA_SOC_H_ 15 16 #ifndef _ASMLANGUAGE 17 18 #include <stm32wbaxx.h> 19 20 21 /* function exported to the soc power.c */ 22 void stm32wba_init(void); 23 24 void stm32_power_init(void); 25 26 #endif /* !_ASMLANGUAGE */ 27 28 #endif /* _STM32WBA_SOC_H_ */ 29