mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-03-20 00:30:57 +03:00
16 lines
387 B
Makefile
16 lines
387 B
Makefile
BINARY := usbcangpio
|
|
# MCU code
|
|
#MCU := F072xB
|
|
MCU := F042x6
|
|
# change this linking script depending on particular MCU model,
|
|
#LDSCRIPT := stm32f072xB.ld
|
|
LDSCRIPT := stm32f042x6.ld
|
|
|
|
DEFINES := -DUSB2_16
|
|
|
|
include ../makefile.f0
|
|
include ../../makefile.stm32
|
|
|
|
$(OBJDIR)/gpioproto.o: gpioproto.cpp $(VERSION_FILE)
|
|
$(OBJDIR)/canproto.o: canproto.c $(VERSION_FILE)
|