Skip to content

Commit cedb608

Browse files
committed
[MP1] Add #include in stm32yyxx_HAL/LL files
1 parent b80192f commit cedb608

File tree

68 files changed

+204
-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.

68 files changed

+204
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_adc.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_adc.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_adc.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_adc.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_bus.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_bus.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_bus.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_bus.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_delayblock.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
#ifdef STM32H7xx
99
#include "stm32h7xx_ll_delayblock.h"
1010
#endif
11+
#ifdef STM32MP1xx
12+
#include "stm32mp1xx_ll_delayblock.h"
13+
#endif
1114
#pragma GCC diagnostic pop
1215
#endif /* _STM32YYXX_LL_DELAYBLOCK_H_ */

cores/arduino/stm32/LL/stm32yyxx_ll_gpio.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_gpio.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_gpio.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_gpio.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_ipcc.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 STM32MP1xx
9+
#include "stm32mp1xx_ll_ipcc.h"
10+
#endif
811
#ifdef STM32WBxx
912
#include "stm32wbxx_ll_ipcc.h"
1013
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_rcc.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_rcc.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_rcc.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_rcc.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_sdmmc.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@
2626
#ifdef STM32L4xx
2727
#include "stm32l4xx_ll_sdmmc.h"
2828
#endif
29+
#ifdef STM32MP1xx
30+
#include "stm32mp1xx_ll_sdmmc.h"
31+
#endif
2932
#pragma GCC diagnostic pop
3033
#endif /* _STM32YYXX_LL_SDMMC_H_ */

cores/arduino/stm32/LL/stm32yyxx_ll_system.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_system.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_system.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_system.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_usart.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_usart.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_usart.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_usart.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_utils.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_utils.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_utils.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_utils.h"
4649
#endif

0 commit comments

Comments
 (0)