zephyr/soc/st/stm32/stm32wbax/soc.h
Anas Nashif c6a03606c2 soc: st: move init code from SYS_INIT to hooks
Replace SYS_INIT with SoC hooks and adapt SoC init code

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2024-09-20 13:15:31 +02:00

28 lines
431 B
C

/*
* Copyright (c) 2023 STMicroelectronics
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file SoC configuration macros for the STM32WBA series processors.
*
*/
#ifndef _STM32WBA_SOC_H_
#define _STM32WBA_SOC_H_
#ifndef _ASMLANGUAGE
#include <stm32wbaxx.h>
/* function exported to the soc power.c */
void stm32wba_init(void);
void stm32_power_init(void);
#endif /* !_ASMLANGUAGE */
#endif /* _STM32WBA_SOC_H_ */