Skip to content

Commit cbd68ef

Browse files
committed
[MP1] Add missing LL wrapper files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 11857b8 commit cbd68ef

17 files changed

+51
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_dma.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_dma.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_dma.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_dma.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_dmamux.h

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
#ifdef STM32L4xx
1818
#include "stm32l4xx_ll_dmamux.h"
1919
#endif
20+
#ifdef STM32MP1xx
21+
#include "stm32mp1xx_ll_dmamux.h"
22+
#endif
2023
#ifdef STM32WBxx
2124
#include "stm32wbxx_ll_dmamux.h"
2225
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_exti.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_exti.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_exti.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_exti.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_hsem.h

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#ifdef STM32H7xx
99
#include "stm32h7xx_ll_hsem.h"
1010
#endif
11+
#ifdef STM32MP1xx
12+
#include "stm32mp1xx_ll_hsem.h"
13+
#endif
1114
#ifdef STM32WBxx
1215
#include "stm32wbxx_ll_hsem.h"
1316
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_i2c.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_i2c.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_i2c.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_i2c.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_lptim.h

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
#ifdef STM32L4xx
2727
#include "stm32l4xx_ll_lptim.h"
2828
#endif
29+
#ifdef STM32MP1xx
30+
#include "stm32mp1xx_ll_lptim.h"
31+
#endif
2932
#ifdef STM32WBxx
3033
#include "stm32wbxx_ll_lptim.h"
3134
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_pwr.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_pwr.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_pwr.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_pwr.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_spi.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_spi.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_spi.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_spi.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_tim.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_tim.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_tim.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_tim.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_wwdg.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_wwdg.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_wwdg.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_wwdg.h"
4649
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_dma.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_dma.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_dma.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_dma.c"
3942
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_exti.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_exti.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_exti.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_exti.c"
3942
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_i2c.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_i2c.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_i2c.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_i2c.c"
3942
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_lptim.c

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32L4xx
2020
#include "stm32l4xx_ll_lptim.c"
2121
#endif
22+
#ifdef STM32MP1xx
23+
#include "stm32mp1xx_ll_lptim.c"
24+
#endif
2225
#ifdef STM32WBxx
2326
#include "stm32wbxx_ll_lptim.c"
2427
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_pwr.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_pwr.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_pwr.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_pwr.c"
3942
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_spi.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_spi.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_spi.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_spi.c"
3942
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_tim.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_tim.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_tim.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_tim.c"
3942
#endif

0 commit comments

Comments
 (0)