Skip to content

Commit f1f3a31

Browse files
committed
[G4] Add STM32G4 wrapper files
Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
1 parent 0a7d222 commit f1f3a31

File tree

120 files changed

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

120 files changed

+389
-0
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32G0xx
2020
#include "stm32g0xx_hal.c"
2121
#endif
22+
#ifdef STM32G4xx
23+
#include "stm32g4xx_hal.c"
24+
#endif
2225
#ifdef STM32H7xx
2326
#include "stm32h7xx_hal.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32G0xx
2020
#include "stm32g0xx_hal_adc.c"
2121
#endif
22+
#ifdef STM32G4xx
23+
#include "stm32g4xx_hal_adc.c"
24+
#endif
2225
#ifdef STM32H7xx
2326
#include "stm32h7xx_hal_adc.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_adc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32G0xx
2020
#include "stm32g0xx_hal_adc_ex.c"
2121
#endif
22+
#ifdef STM32G4xx
23+
#include "stm32g4xx_hal_adc_ex.c"
24+
#endif
2225
#ifdef STM32H7xx
2326
#include "stm32h7xx_hal_adc_ex.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_comp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32G0xx
88
#include "stm32g0xx_hal_comp.c"
99
#endif
10+
#ifdef STM32G4xx
11+
#include "stm32g4xx_hal_comp.c"
12+
#endif
1013
#ifdef STM32H7xx
1114
#include "stm32h7xx_hal_comp.c"
1215
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32G4xx
2+
#include "stm32g4xx_hal_cordic.c"
3+
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cortex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32G0xx
2020
#include "stm32g0xx_hal_cortex.c"
2121
#endif
22+
#ifdef STM32G4xx
23+
#include "stm32g4xx_hal_cortex.c"
24+
#endif
2225
#ifdef STM32H7xx
2326
#include "stm32h7xx_hal_cortex.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
#ifdef STM32G0xx
2020
#include "stm32g0xx_hal_crc.c"
2121
#endif
22+
#ifdef STM32G4xx
23+
#include "stm32g4xx_hal_crc.c"
24+
#endif
2225
#ifdef STM32H7xx
2326
#include "stm32h7xx_hal_crc.c"
2427
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_crc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#ifdef STM32G0xx
1111
#include "stm32g0xx_hal_crc_ex.c"
1212
#endif
13+
#ifdef STM32G4xx
14+
#include "stm32g4xx_hal_crc_ex.c"
15+
#endif
1316
#ifdef STM32H7xx
1417
#include "stm32h7xx_hal_crc_ex.c"
1518
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#ifdef STM32G0xx
1111
#include "stm32g0xx_hal_cryp.c"
1212
#endif
13+
#ifdef STM32G4xx
14+
#include "stm32g4xx_hal_cryp.c"
15+
#endif
1316
#ifdef STM32H7xx
1417
#include "stm32h7xx_hal_cryp.c"
1518
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_cryp_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32G0xx
88
#include "stm32g0xx_hal_cryp_ex.c"
99
#endif
10+
#ifdef STM32G4xx
11+
#include "stm32g4xx_hal_cryp_ex.c"
12+
#endif
1013
#ifdef STM32H7xx
1114
#include "stm32h7xx_hal_cryp_ex.c"
1215
#endif

0 commit comments

Comments
 (0)