Skip to content

Commit 096ab6f

Browse files
committed
[L4] Update HAL/LL wrapper files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent f99f797 commit 096ab6f

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_pka.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#pragma GCC diagnostic ignored "-Wunused-parameter"
66
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
77

8+
#ifdef STM32L4xx
9+
#include "stm32l4xx_ll_pka.h"
10+
#endif
811
#ifdef STM32WBxx
912
#include "stm32wbxx_ll_pka.h"
1013
#endif

cores/arduino/stm32/stm32_def_build.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,10 @@
334334
#define CMSIS_STARTUP_FILE "startup_stm32l496xx.s"
335335
#elif defined(STM32L4A6xx)
336336
#define CMSIS_STARTUP_FILE "startup_stm32l4a6xx.s"
337+
#elif defined(STM32L4P5xx)
338+
#define CMSIS_STARTUP_FILE "startup_stm32l4p5xx.s"
339+
#elif defined(STM32L4Q5xx)
340+
#define CMSIS_STARTUP_FILE "startup_stm32l4q5xx.s"
337341
#elif defined(STM32L4R5xx)
338342
#define CMSIS_STARTUP_FILE "startup_stm32l4r5xx.s"
339343
#elif defined(STM32L4R7xx)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32L4xx
2+
#include "stm32l4xx_hal_pka.c"
3+
#endif
14
#ifdef STM32WBxx
25
#include "stm32wbxx_hal_pka.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32L4xx
2+
#include "stm32l4xx_hal_pssi.c"
3+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32L4xx
2+
#include "stm32l4xx_hal_rng_ex.c"
3+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32L4xx
2+
#include "stm32l4xx_ll_pka.c"
3+
#endif
14
#ifdef STM32WBxx
25
#include "stm32wbxx_ll_pka.c"
36
#endif

0 commit comments

Comments
 (0)