Commit 402e2ca9 authored by Alexandre Bourdiol's avatar Alexandre Bourdiol Committed by Kumar Gala
Browse files

stm32cube: common_ll: Add stm32wlxx common ll support



Add stm32wlxx support.

Signed-off-by: default avatarAlexandre Bourdiol <alexandre.bourdiol@st.com>
parent 4aec3334
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,4 +25,5 @@ stm32l4xx 1.16.0
stm32l5xx       1.3.1
stm32mp1xx      1.2.0
stm32wbxx       1.9.0
stm32wlxx       1.0.0
=============== ===============
 No newline at end of file
+2 −0
Original line number Diff line number Diff line
@@ -36,4 +36,6 @@
#include <stm32mp1xx_ll_adc.h>
#elif defined(CONFIG_SOC_SERIES_STM32WBX)
#include <stm32wbxx_ll_adc.h>
#elif defined(CONFIG_SOC_SERIES_STM32WLX)
#include <stm32wlxx_ll_adc.h>
#endif
+2 −0
Original line number Diff line number Diff line
@@ -36,4 +36,6 @@
#include <stm32mp1xx_ll_bus.h>
#elif defined(CONFIG_SOC_SERIES_STM32WBX)
#include <stm32wbxx_ll_bus.h>
#elif defined(CONFIG_SOC_SERIES_STM32WLX)
#include <stm32wlxx_ll_bus.h>
#endif
+2 −0
Original line number Diff line number Diff line
@@ -26,4 +26,6 @@
#include <stm32l5xx_ll_comp.h>
#elif defined(CONFIG_SOC_SERIES_STM32WBX)
#include <stm32wbxx_ll_comp.h>
#elif defined(CONFIG_SOC_SERIES_STM32WLX)
#include <stm32wlxx_ll_comp.h>
#endif
+2 −0
Original line number Diff line number Diff line
@@ -36,4 +36,6 @@
#include <stm32mp1xx_ll_cortex.h>
#elif defined(CONFIG_SOC_SERIES_STM32WBX)
#include <stm32wbxx_ll_cortex.h>
#elif defined(CONFIG_SOC_SERIES_STM32WLX)
#include <stm32wlxx_ll_cortex.h>
#endif
Loading