File tree 3 files changed +20
-1
lines changed 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,12 @@ stm32l476xg 32l476rg-nucleo: clean
183
183
DEFINES=' STM32L4 STM32L476xx USBD_SOF_DISABLED' \
184
184
CFLAGS=' -mcpu=cortex-m4'
185
185
186
+ stm32l496xg : clean
187
+ @$(MAKE ) demo STARTUP=' $(CMSISDEV)/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l496xx.s' \
188
+ LDSCRIPT=' demo/stm32l496xg.ld' \
189
+ DEFINES=' STM32L4 STM32L496xx USBD_SOF_DISABLED' \
190
+ CFLAGS=' -mcpu=cortex-m4'
191
+
186
192
stm32f429xi 32f429zi-nucleo : clean
187
193
@$(MAKE ) demo STARTUP=' $(CMSISDEV)/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s' \
188
194
LDSCRIPT=' demo/stm32f429xi.ld' \
Original file line number Diff line number Diff line change
1
+ ENTRY (Reset_Handler )
2
+ MEMORY
3
+ {
4
+ ROM (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
5
+ BANK0 (rx) : ORIGIN = 0x08000000, LENGTH = 512K
6
+ BANK1 (rx) : ORIGIN = 0x08080000, LENGTH = 512K
7
+ RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 256K
8
+ RAM2 (rwx) : ORIGIN = 0x10000000, LENGTH = 64K
9
+ SRAM1 (rwx) : ORIGIN = 0x20000000, LENGTH = 256K
10
+ SRAM2 (rwx) : ORIGIN = 0x2001C000, LENGTH = 64K
11
+ }
12
+
13
+ INCLUDE sections.ld
Original file line number Diff line number Diff line change 75
75
#endif
76
76
#endif
77
77
78
- #elif defined(STM32L475xx ) || defined(STM32L476xx )
78
+ #elif defined(STM32L475xx ) || defined(STM32L476xx ) || defined( STM32L496xx )
79
79
80
80
#define USBD_STM32L476
81
81
You can’t perform that action at this time.
0 commit comments