Skip to content

Commit 47e875e

Browse files
committed
Add STM32H7 wrapper files
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 3fbf5f0 commit 47e875e

File tree

143 files changed

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

143 files changed

+448
-0
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_adc.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_adc.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_adc.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_adc_ex.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_adc_ex.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_adc_ex.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cec.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
#ifdef STM32F7xx
1414
#include "stm32f7xx_hal_cec.c"
1515
#endif
16+
#ifdef STM32H7xx
17+
#include "stm32h7xx_hal_cec.c"
18+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_comp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F3xx
55
#include "stm32f3xx_hal_comp.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_comp.c"
9+
#endif
710
#ifdef STM32L0xx
811
#include "stm32l0xx_hal_comp.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cortex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_cortex.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_cortex.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_cortex.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_crc.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_crc.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_crc.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F7xx
88
#include "stm32f7xx_hal_crc_ex.c"
99
#endif
10+
#ifdef STM32H7xx
11+
#include "stm32h7xx_hal_crc_ex.c"
12+
#endif
1013
#ifdef STM32L0xx
1114
#include "stm32l0xx_hal_crc_ex.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F7xx
88
#include "stm32f7xx_hal_cryp.c"
99
#endif
10+
#ifdef STM32H7xx
11+
#include "stm32h7xx_hal_cryp.c"
12+
#endif
1013
#ifdef STM32L0xx
1114
#include "stm32l0xx_hal_cryp.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_cryp_ex.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_cryp_ex.c"
9+
#endif
710
#ifdef STM32L0xx
811
#include "stm32l0xx_hal_cryp_ex.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dac.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_dac.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_dac.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_dac.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dac_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_dac_ex.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_dac_ex.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_dac_ex.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dcmi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F7xx
88
#include "stm32f7xx_hal_dcmi.c"
99
#endif
10+
#ifdef STM32H7xx
11+
#include "stm32h7xx_hal_dcmi.c"
12+
#endif
1013
#ifdef STM32L4xx
1114
#include "stm32l4xx_hal_dcmi.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dfsdm.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_dfsdm.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_dfsdm.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_dfsdm.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dma.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_dma.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_dma.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_dma.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dma2d.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_dma2d.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_dma2d.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_dma2d.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_dma_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F7xx
88
#include "stm32f7xx_hal_dma_ex.c"
99
#endif
10+
#ifdef STM32H7xx
11+
#include "stm32h7xx_hal_dma_ex.c"
12+
#endif
1013
#ifdef STM32L4xx
1114
#include "stm32l4xx_hal_dma_ex.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_eth.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32F7xx
1111
#include "stm32f7xx_hal_eth.c"
1212
#endif
13+
#ifdef STM32H7xx
14+
#include "stm32h7xx_hal_eth.c"
15+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_eth_ex.c"
3+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_exti.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_exti.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_fdcan.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_flash.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_flash.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_flash.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_flash.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_flash_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_flash_ex.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_flash_ex.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_flash_ex.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_gpio.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_gpio.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_gpio.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_gpio.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_hash.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F7xx
88
#include "stm32f7xx_hal_hash.c"
99
#endif
10+
#ifdef STM32H7xx
11+
#include "stm32h7xx_hal_hash.c"
12+
#endif
1013
#ifdef STM32L4xx
1114
#include "stm32l4xx_hal_hash.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_hash_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_hash_ex.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_hash_ex.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_hash_ex.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_hcd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#ifdef STM32F7xx
1111
#include "stm32f7xx_hal_hcd.c"
1212
#endif
13+
#ifdef STM32H7xx
14+
#include "stm32h7xx_hal_hcd.c"
15+
#endif
1316
#ifdef STM32L4xx
1417
#include "stm32l4xx_hal_hcd.c"
1518
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#ifdef STM32F3xx
22
#include "stm32f3xx_hal_hrtim.c"
33
#endif
4+
#ifdef STM32H7xx
5+
#include "stm32h7xx_hal_hrtim.c"
6+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_hsem.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2c.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_i2c.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_i2c.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_i2c.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2c_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#ifdef STM32F7xx
1111
#include "stm32f7xx_hal_i2c_ex.c"
1212
#endif
13+
#ifdef STM32H7xx
14+
#include "stm32h7xx_hal_i2c_ex.c"
15+
#endif
1316
#ifdef STM32L0xx
1417
#include "stm32l0xx_hal_i2c_ex.c"
1518
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2s.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_i2s.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_i2s.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_i2s.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_i2s_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
#ifdef STM32F4xx
55
#include "stm32f4xx_hal_i2s_ex.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_i2s_ex.c"
9+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_irda.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_irda.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_irda.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_irda.c"
2124
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_iwdg.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_iwdg.c"
1818
#endif
19+
#ifdef STM32H7xx
20+
#include "stm32h7xx_hal_iwdg.c"
21+
#endif
1922
#ifdef STM32L0xx
2023
#include "stm32l0xx_hal_iwdg.c"
2124
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#ifdef STM32F7xx
22
#include "stm32f7xx_hal_jpeg.c"
33
#endif
4+
#ifdef STM32H7xx
5+
#include "stm32h7xx_hal_jpeg.c"
6+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_lptim.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_lptim.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_lptim.c"
9+
#endif
710
#ifdef STM32L0xx
811
#include "stm32l0xx_hal_lptim.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_ltdc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_ltdc.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_ltdc.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_ltdc.c"
912
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#ifdef STM32F7xx
22
#include "stm32f7xx_hal_mdios.c"
33
#endif
4+
#ifdef STM32H7xx
5+
#include "stm32h7xx_hal_mdios.c"
6+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_mdma.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_mmc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
#ifdef STM32F7xx
1111
#include "stm32f7xx_hal_mmc.c"
1212
#endif
13+
#ifdef STM32H7xx
14+
#include "stm32h7xx_hal_mmc.c"
15+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_mmc_ex.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_nand.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
#ifdef STM32F7xx
1414
#include "stm32f7xx_hal_nand.c"
1515
#endif
16+
#ifdef STM32H7xx
17+
#include "stm32h7xx_hal_nand.c"
18+
#endif
1619
#ifdef STM32L4xx
1720
#include "stm32l4xx_hal_nand.c"
1821
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_nor.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
#ifdef STM32F7xx
1414
#include "stm32f7xx_hal_nor.c"
1515
#endif
16+
#ifdef STM32H7xx
17+
#include "stm32h7xx_hal_nor.c"
18+
#endif
1619
#ifdef STM32L1xx
1720
#include "stm32l1xx_hal_nor.c"
1821
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_opamp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#ifdef STM32F3xx
22
#include "stm32f3xx_hal_opamp.c"
33
#endif
4+
#ifdef STM32H7xx
5+
#include "stm32h7xx_hal_opamp.c"
6+
#endif
47
#ifdef STM32L1xx
58
#include "stm32l1xx_hal_opamp.c"
69
#endif

0 commit comments

Comments
 (0)