mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-02-28 03:44:30 +03:00
11 lines
319 B
Makefile
11 lines
319 B
Makefile
BINARY := multiiface
|
|
# MCU code
|
|
MCU := F303xc
|
|
# change this linking script depending on particular MCU model,
|
|
LDSCRIPT := stm32f303xB.ld
|
|
# add define "-DSPIDMA" to use DMA for SSI encoder, in that case IF1 (USART3) would be interrupt-driven!
|
|
DEFINES := -DUSB1_16
|
|
|
|
include ../makefile.f3
|
|
include ../../makefile.stm32
|