Skip to content

Commit c505ee7

Browse files
committed
STM32MP1xx: Add #include in stm32yyxx_HAL/LL files
1 parent 97649bb commit c505ee7

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/HAL/stm32yyxx_hal.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal.c"
36+
#endif
3437
#ifdef STM32WBxx
3538
#include "stm32wbxx_hal.c"
3639
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal_adc.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal_adc.c"
36+
#endif
3437
#ifdef STM32WBxx
3538
#include "stm32wbxx_hal_adc.c"
3639
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal_adc_ex.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal_adc_ex.c"
36+
#endif
3437
#ifdef STM32WBxx
3538
#include "stm32wbxx_hal_adc_ex.c"
3639
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cec.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@
1919
#ifdef STM32H7xx
2020
#include "stm32h7xx_hal_cec.c"
2121
#endif
22+
#ifdef STM32MP1xx
23+
#include "stm32mp1xx_hal_cec.c"
24+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cortex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal_cortex.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal_cortex.c"
36+
#endif
3437
#ifdef STM32WBxx
3538
#include "stm32wbxx_hal_cortex.c"
3639
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal_crc.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal_crc.c"
36+
#endif
3437
#ifdef STM32WBxx
3538
#include "stm32wbxx_hal_crc.c"
3639
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32L4xx
2020
#include "stm32l4xx_hal_crc_ex.c"
2121
#endif
22+
#ifdef STM32MP1xx
23+
#include "stm32mp1xx_hal_crc_ex.c"
24+
#endif
2225
#ifdef STM32WBxx
2326
#include "stm32wbxx_hal_crc_ex.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
#ifdef STM32L4xx
2323
#include "stm32l4xx_hal_cryp.c"
2424
#endif
25+
#ifdef STM32MP1xx
26+
#include "stm32mp1xx_hal_cryp.c"
27+
#endif
2528
#ifdef STM32WBxx
2629
#include "stm32wbxx_hal_cryp.c"
2730
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32L4xx
2020
#include "stm32l4xx_hal_cryp_ex.c"
2121
#endif
22+
#ifdef STM32MP1xx
23+
#include "stm32mp1xx_hal_cryp_ex.c"
24+
#endif
2225
#ifdef STM32WBxx
2326
#include "stm32wbxx_hal_cryp_ex.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dac.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@
3131
#ifdef STM32L4xx
3232
#include "stm32l4xx_hal_dac.c"
3333
#endif
34+
#ifdef STM32MP1xx
35+
#include "stm32mp1xx_hal_dac.c"
36+
#endif

0 commit comments

Comments
 (0)