2022-06-10 15:35:59 +08:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2024-09-10 21:42:45 +08:00
|
|
|
|
2023-11-07 16:31:12 +08:00
|
|
|
/* function exported to the soc power.c */
|
2024-09-10 21:42:45 +08:00
|
|
|
void stm32wba_init(void);
|
|
|
|
|
|
|
|
void stm32_power_init(void);
|
2023-11-07 16:31:12 +08:00
|
|
|
|
2022-06-10 15:35:59 +08:00
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
|
|
|
|
#endif /* _STM32WBA_SOC_H_ */
|