mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 02:35:23 +03:00
8 lines
272 B
Plaintext
8 lines
272 B
Plaintext
# common include for all F3 series
|
|
# MCU FAMILY
|
|
FAMILY ?= F3
|
|
# or __ARM_ARCH_7EM__
|
|
DEFINES += -D__ARM_ARCH_7M__
|
|
FP_FLAGS ?= -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -mlittle-endian -DARM_MATH_CM4
|
|
ASM_FLAGS ?= -mthumb -mcpu=cortex-m4 -march=armv7e-m
|