Skip to content

Commit c880f8c

Browse files
committed
Add STM32WB wrapper files
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 5f189eb commit c880f8c

File tree

104 files changed

+317
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+317
-0
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_adc.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_adc.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_adc_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_adc_ex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_comp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_comp.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_comp.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cortex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_cortex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_cortex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_crc.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_crc.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_crc_ex.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_crc_ex.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@
1919
#ifdef STM32L4xx
2020
#include "stm32l4xx_hal_cryp.c"
2121
#endif
22+
#ifdef STM32WBxx
23+
#include "stm32wbxx_hal_cryp.c"
24+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_cryp_ex.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_cryp_ex.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dma.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_dma.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_dma.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dma_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
#ifdef STM32L4xx
1414
#include "stm32l4xx_hal_dma_ex.c"
1515
#endif
16+
#ifdef STM32WBxx
17+
#include "stm32wbxx_hal_dma_ex.c"
18+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_exti.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
#ifdef STM32L4xx
55
#include "stm32l4xx_hal_exti.c"
66
#endif
7+
#ifdef STM32WBxx
8+
#include "stm32wbxx_hal_exti.c"
9+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_flash.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_flash.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_flash.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_flash_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_flash_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_flash_ex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_gpio.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_gpio.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_gpio.c"
33+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#ifdef STM32H7xx
22
#include "stm32h7xx_hal_hsem.c"
33
#endif
4+
#ifdef STM32WBxx
5+
#include "stm32wbxx_hal_hsem.c"
6+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2c.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_i2c.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_i2c.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2c_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@
1919
#ifdef STM32L4xx
2020
#include "stm32l4xx_hal_i2c_ex.c"
2121
#endif
22+
#ifdef STM32WBxx
23+
#include "stm32wbxx_hal_i2c_ex.c"
24+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32WBxx
2+
#include "stm32wbxx_hal_ipcc.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_irda.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_irda.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_irda.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_iwdg.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_iwdg.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_iwdg.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_lcd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
#ifdef STM32L4xx
88
#include "stm32l4xx_hal_lcd.c"
99
#endif
10+
#ifdef STM32WBxx
11+
#include "stm32wbxx_hal_lcd.c"
12+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_lptim.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
#ifdef STM32L4xx
1414
#include "stm32l4xx_hal_lptim.c"
1515
#endif
16+
#ifdef STM32WBxx
17+
#include "stm32wbxx_hal_lptim.c"
18+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_msp_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,7 @@
2626
#ifdef STM32L4xx
2727
#include "stm32l4xx_hal_msp_template.c"
2828
#endif
29+
#ifdef STM32WBxx
30+
#include "stm32wbxx_hal_msp_template.c"
31+
#endif
2932
#endif /* 0 */

cores/arduino/stm32/HAL/stm32yyxx_hal_pcd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_pcd.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_pcd.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_pcd_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_pcd_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_pcd_ex.c"
33+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32WBxx
2+
#include "stm32wbxx_hal_pka.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_pwr.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_pwr.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_pwr.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_pwr_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@
2525
#ifdef STM32L4xx
2626
#include "stm32l4xx_hal_pwr_ex.c"
2727
#endif
28+
#ifdef STM32WBxx
29+
#include "stm32wbxx_hal_pwr_ex.c"
30+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_qspi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32L4xx
1111
#include "stm32l4xx_hal_qspi.c"
1212
#endif
13+
#ifdef STM32WBxx
14+
#include "stm32wbxx_hal_qspi.c"
15+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_rcc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_rcc.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_rcc.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_rcc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_rcc_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_rcc_ex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_rng.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_rng.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_rng.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_rtc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_rtc.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_rtc.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_rtc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_rtc_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_rtc_ex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_sai.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32L4xx
1111
#include "stm32l4xx_hal_sai.c"
1212
#endif
13+
#ifdef STM32WBxx
14+
#include "stm32wbxx_hal_sai.c"
15+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_sai_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32L4xx
1111
#include "stm32l4xx_hal_sai_ex.c"
1212
#endif
13+
#ifdef STM32WBxx
14+
#include "stm32wbxx_hal_sai_ex.c"
15+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_smartcard.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_smartcard.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_smartcard.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_smartcard_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_smartcard_ex.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_smartcard_ex.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_smbus.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_smbus.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_smbus.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_spi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_spi.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_spi.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_spi_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_hal_spi_ex.c"
1818
#endif
19+
#ifdef STM32WBxx
20+
#include "stm32wbxx_hal_spi_ex.c"
21+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_tim.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_tim.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_tim.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_tim_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_tim_ex.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_tim_ex.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_rtc_alarm_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@
1717
#ifdef STM32F7xx
1818
#include "stm32f7xx_hal_timebase_rtc_alarm_template.c"
1919
#endif
20+
#ifdef STM32WBxx
21+
#include "stm32wbxx_hal_timebase_rtc_alarm_template.c"
22+
#endif
2023
#endif /* 0 */

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_rtc_wakeup_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@
1414
#ifdef STM32F7xx
1515
#include "stm32f7xx_hal_timebase_rtc_wakeup_template.c"
1616
#endif
17+
#ifdef STM32WBxx
18+
#include "stm32wbxx_hal_timebase_rtc_wakeup_template.c"
19+
#endif
1720
#endif /* 0 */

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_tim_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,7 @@
2323
#ifdef STM32L4xx
2424
#include "stm32l4xx_hal_timebase_tim_template.c"
2525
#endif
26+
#ifdef STM32WBxx
27+
#include "stm32wbxx_hal_timebase_tim_template.c"
28+
#endif
2629
#endif /* 0 */

cores/arduino/stm32/HAL/stm32yyxx_hal_tsc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32L4xx
1111
#include "stm32l4xx_hal_tsc.c"
1212
#endif
13+
#ifdef STM32WBxx
14+
#include "stm32wbxx_hal_tsc.c"
15+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_uart.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_uart.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_uart.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_uart_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
#ifdef STM32L4xx
1414
#include "stm32l4xx_hal_uart_ex.c"
1515
#endif
16+
#ifdef STM32WBxx
17+
#include "stm32wbxx_hal_uart_ex.c"
18+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_usart.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_usart.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_usart.c"
33+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_usart_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
#ifdef STM32L4xx
55
#include "stm32l4xx_hal_usart_ex.c"
66
#endif
7+
#ifdef STM32WBxx
8+
#include "stm32wbxx_hal_usart_ex.c"
9+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_wwdg.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_hal_wwdg.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_hal_wwdg.c"
33+
#endif

cores/arduino/stm32/LL/stm32yyxx_ll.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@
2525
#include "stm32yyxx_ll_hrtim.h"
2626
#include "stm32yyxx_ll_hsem.h"
2727
#include "stm32yyxx_ll_i2c.h"
28+
#include "stm32yyxx_ll_ipcc.h"
2829
#include "stm32yyxx_ll_iwdg.h"
2930
#include "stm32yyxx_ll_lptim.h"
3031
#include "stm32yyxx_ll_lpuart.h"
3132
#include "stm32yyxx_ll_mdma.h"
3233
#include "stm32yyxx_ll_opamp.h"
34+
#include "stm32yyxx_ll_pka.h"
3335
#include "stm32yyxx_ll_pwr.h"
3436
#include "stm32yyxx_ll_rcc.h"
3537
#include "stm32yyxx_ll_rng.h"

cores/arduino/stm32/LL/stm32yyxx_ll_adc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
#ifdef STM32L4xx
2929
#include "stm32l4xx_ll_adc.c"
3030
#endif
31+
#ifdef STM32WBxx
32+
#include "stm32wbxx_ll_adc.c"
33+
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_adc.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,7 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_ll_adc.h"
3333
#endif
34+
#ifdef STM32WBxx
35+
#include "stm32wbxx_ll_adc.h"
36+
#endif
3437
#endif /* _STM32YYXX_LL_ADC_H_ */

0 commit comments

Comments
 (0)