Skip to content

Commit a6f600e

Browse files
authored
Merge branch 'master' into receive_double_buffering_for_f1
2 parents 7b09ae3 + 9980588 commit a6f600e

File tree

299 files changed

+204000
-765
lines changed

Some content is hidden

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

299 files changed

+204000
-765
lines changed

CI/astyle/.astyleignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
BUILD
33
CI
44
system/Drivers
5-
system/STM32F*
5+
system/STM32*

boards.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,18 @@ Nucleo_64.menu.pnum.NUCLEO_L476RG.build.product_line=STM32L476xx
308308
Nucleo_64.menu.pnum.NUCLEO_L476RG.build.variant=NUCLEO_L476RG
309309
Nucleo_64.menu.pnum.NUCLEO_L476RG.build.cmsis_lib_gcc=arm_cortexM4l_math
310310

311+
# PNUCLEO_WB55RG board
312+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG=P-Nucleo WB55RG
313+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.node=NODE_WB55RG
314+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.upload.maximum_size=524288
315+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.upload.maximum_data_size=196604
316+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.mcu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
317+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.board=PNUCLEO_WB55RG
318+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.series=STM32WBxx
319+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.product_line=STM32WB55xx
320+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.variant=PNUCLEO_WB55RG
321+
Nucleo_64.menu.pnum.PNUCLEO_WB55RG.build.cmsis_lib_gcc=arm_cortexM4l_math
322+
311323
# Upload menu
312324
Nucleo_64.menu.upload_method.MassStorage=Mass Storage
313325
Nucleo_64.menu.upload_method.MassStorage.upload.protocol=

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

0 commit comments

Comments
 (0)