Skip to content

Commit dbc5416

Browse files
committed
[L5] Update wrapped files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 4fda736 commit dbc5416

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "stm32yyxx_ll_hrtim.h"
2929
#include "stm32yyxx_ll_hsem.h"
3030
#include "stm32yyxx_ll_i2c.h"
31+
#include "stm32yyxx_ll_icache.h"
3132
#include "stm32yyxx_ll_ipcc.h"
3233
#include "stm32yyxx_ll_iwdg.h"
3334
#include "stm32yyxx_ll_lptim.h"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#ifndef _STM32YYXX_LL_ICACHE_H_
2+
#define _STM32YYXX_LL_ICACHE_H_
3+
/* LL raised several warnings, ignore them */
4+
#pragma GCC diagnostic push
5+
#pragma GCC diagnostic ignored "-Wunused-parameter"
6+
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
7+
8+
#ifdef STM32L5xx
9+
#include "stm32l5xx_ll_icache.h"
10+
#endif
11+
#pragma GCC diagnostic pop
12+
#endif /* _STM32YYXX_LL_ICACHE_H_ */
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#ifdef STM32L0xx
22
#include "stm32l0xx_hal_smbus_ex.c"
33
#endif
4+
#ifdef STM32L5xx
5+
#include "stm32l5xx_hal_smbus_ex.c"
6+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32L5xx
2+
#include "stm32l5xx_ll_icache.c"
3+
#endif

0 commit comments

Comments
 (0)