Skip to content

Commit a12e123

Browse files
authored
Merge pull request #1249 from FRASTM/stm32L5
Support the new stm32L5xx serie
2 parents 0a0b2b9 + 6c9a704 commit a12e123

File tree

377 files changed

+297820
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+297820
-25
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 STM32L5xx
45+
#include "stm32l5xx_ll_adc.h"
46+
#endif
4447
#ifdef STM32MP1xx
4548
#include "stm32mp1xx_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 STM32L5xx
45+
#include "stm32l5xx_ll_bus.h"
46+
#endif
4447
#ifdef STM32MP1xx
4548
#include "stm32mp1xx_ll_bus.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_comp.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
#ifdef STM32L4xx
3030
#include "stm32l4xx_ll_comp.h"
3131
#endif
32+
#ifdef STM32L5xx
33+
#include "stm32l5xx_ll_comp.h"
34+
#endif
3235
#ifdef STM32WBxx
3336
#include "stm32wbxx_ll_comp.h"
3437
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_cortex.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_cortex.h"
4343
#endif
44+
#ifdef STM32L5xx
45+
#include "stm32l5xx_ll_cortex.h"
46+
#endif
4447
#ifdef STM32MP1xx
4548
#include "stm32mp1xx_ll_cortex.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_crc.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_crc.h"
4343
#endif
44+
#ifdef STM32L5xx
45+
#include "stm32l5xx_ll_crc.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_crc.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_crs.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
#ifdef STM32L4xx
2121
#include "stm32l4xx_ll_crs.h"
2222
#endif
23+
#ifdef STM32L5xx
24+
#include "stm32l5xx_ll_crs.h"
25+
#endif
2326
#ifdef STM32WBxx
2427
#include "stm32wbxx_ll_crs.h"
2528
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_dac.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,8 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_dac.h"
4343
#endif
44+
#ifdef STM32L5xx
45+
#include "stm32l5xx_ll_dac.h"
46+
#endif
4447
#pragma GCC diagnostic pop
4548
#endif /* _STM32YYXX_LL_DAC_H_ */

cores/arduino/stm32/LL/stm32yyxx_ll_dma.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_dma.h"
4343
#endif
44+
#ifdef STM32L5xx
45+
#include "stm32l5xx_ll_dma.h"
46+
#endif
4447
#ifdef STM32MP1xx
4548
#include "stm32mp1xx_ll_dma.h"
4649
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_dmamux.h

Lines changed: 3 additions & 0 deletions
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 STM32L5xx
21+
#include "stm32l5xx_ll_dmamux.h"
22+
#endif
2023
#ifdef STM32MP1xx
2124
#include "stm32mp1xx_ll_dmamux.h"
2225
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_exti.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_exti.h"
4343
#endif
44+
#ifdef STM32L5xx
45+
#include "stm32l5xx_ll_exti.h"
46+
#endif
4447
#ifdef STM32MP1xx
4548
#include "stm32mp1xx_ll_exti.h"
4649
#endif

0 commit comments

Comments
 (0)