Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/libusb_stm32.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFragonite <48802408+Fragonite@users.noreply.github.com>2021-04-26 22:14:15 +0300
committerGitHub <noreply@github.com>2021-04-26 22:14:15 +0300
commit92179904a62cef5dcdba1eb61613629da221ab1f (patch)
tree8ca6e054d02449c95a182334963bef16f4b32137 /Makefile
parent319a750fd3d5f679e7be9b5e1719f8c46dafdf06 (diff)
STM32F401xE Demo (#89)
* Added STM32F401xE demo and updated list of supported hardware. * Added STM32F401CE to list of tested MCUs. * Updated makefile help output (added lines for stm32f401xc and stm32f401xe). Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5446402..d9b696b 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,8 @@ help all:
@echo ' stm32l052x8 CDC loopback demo for STM32L052x8 based boards'
@echo ' 32f429zi-nucleo'
@echo ' stm32f429xi CDC loopback demo for STM32F429xI based boards'
+ @echo ' stm32f401xc CDC loopback demo for STM32F401xC based boards'
+ @echo ' stm32f401xe CDC loopback demo for STM32F401xE based boards'
@echo ' cmsis Download CMSIS 5 and stm32.h into a $$(CMSIS) directory'
@echo ' doc DOXYGEN documentation'
@echo ' module static library module using following envars (defaults)'
@@ -248,6 +250,12 @@ stm32f401xc: clean
DEFINES='STM32F4 STM32F401xC USBD_SOF_DISABLED' \
CFLAGS='-mcpu=cortex-m4'
+stm32f401xe: clean
+ @$(MAKE) demo STARTUP='$(CMSISDEV)/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f401xe.s' \
+ LDSCRIPT='demo/stm32f401xe.ld' \
+ DEFINES='STM32F4 STM32F401xE USBD_SOF_DISABLED' \
+ CFLAGS='-mcpu=cortex-m4'
+
stm32f745xe: clean
@$(MAKE) demo STARTUP='$(CMSISDEV)/ST/STM32F7xx/Source/Templates/gcc/startup_stm32f745xx.s' \
LDSCRIPT='demo/stm32f745xe.ld' \