2014-05-03 12:39:07 -04:00
|
|
|
# Select the board to build for: if not given on the command line,
|
|
|
|
# then default to PYBV10.
|
|
|
|
BOARD ?= PYBV10
|
|
|
|
|
|
|
|
# If the build directory is not given, make it reflect the board name.
|
|
|
|
BUILD ?= build-$(BOARD)
|
|
|
|
|
2018-09-04 01:32:43 -04:00
|
|
|
BOARD_DIR ?= boards/$(BOARD)
|
|
|
|
ifeq ($(wildcard $(BOARD_DIR)/.),)
|
|
|
|
$(error Invalid BOARD specified: $(BOARD_DIR))
|
|
|
|
endif
|
|
|
|
|
2017-09-06 00:09:13 -04:00
|
|
|
include ../../py/mkenv.mk
|
2014-09-01 17:48:57 -04:00
|
|
|
-include mpconfigport.mk
|
2018-09-04 01:32:43 -04:00
|
|
|
include $(BOARD_DIR)/mpconfigboard.mk
|
2014-03-12 02:55:41 -04:00
|
|
|
|
|
|
|
# qstr definitions (must come before including py.mk)
|
2015-08-02 13:42:09 -04:00
|
|
|
QSTR_DEFS = qstrdefsport.h $(BUILD)/pins_qstr.h $(BUILD)/modstm_qstr.h
|
2018-09-04 01:32:43 -04:00
|
|
|
QSTR_GLOBAL_DEPENDENCIES = mpconfigboard_common.h $(BOARD_DIR)/mpconfigboard.h
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-01-22 22:37:49 -05:00
|
|
|
# directory containing scripts to be frozen as bytecode
|
|
|
|
FROZEN_MPY_DIR ?= modules
|
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
# include py core make definitions
|
2017-08-10 22:22:19 -04:00
|
|
|
include $(TOP)/py/py.mk
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2019-07-03 09:42:36 -04:00
|
|
|
MCU_SERIES_UPPER = $(shell echo $(MCU_SERIES) | tr '[:lower:]' '[:upper:]')
|
|
|
|
CMSIS_MCU_LOWER = $(shell echo $(CMSIS_MCU) | tr '[:upper:]' '[:lower:]')
|
|
|
|
|
2016-09-21 05:49:45 -04:00
|
|
|
LD_DIR=boards
|
2017-08-27 08:36:39 -04:00
|
|
|
CMSIS_DIR=$(TOP)/lib/stm32lib/CMSIS/STM32$(MCU_SERIES_UPPER)xx/Include
|
|
|
|
HAL_DIR=lib/stm32lib/STM32$(MCU_SERIES_UPPER)xx_HAL_Driver
|
2014-03-13 20:30:37 -04:00
|
|
|
USBDEV_DIR=usbdev
|
|
|
|
#USBHOST_DIR=usbhost
|
2017-01-27 07:11:59 -05:00
|
|
|
FATFS_DIR=lib/oofatfs
|
2017-08-10 22:22:19 -04:00
|
|
|
DFU=$(TOP)/tools/dfu.py
|
2014-04-30 21:51:29 -04:00
|
|
|
# may need to prefix dfu-util with sudo
|
2016-03-08 06:58:39 -05:00
|
|
|
USE_PYDFU ?= 1
|
2017-08-10 22:22:19 -04:00
|
|
|
PYDFU ?= $(TOP)/tools/pydfu.py
|
2014-07-21 19:28:07 -04:00
|
|
|
DFU_UTIL ?= dfu-util
|
2014-05-03 14:51:47 -04:00
|
|
|
DEVICE=0483:df11
|
2016-03-08 02:42:30 -05:00
|
|
|
STFLASH ?= st-flash
|
2016-03-08 05:29:22 -05:00
|
|
|
OPENOCD ?= openocd
|
|
|
|
OPENOCD_CONFIG ?= boards/openocd_stm32f4.cfg
|
2019-07-03 09:42:36 -04:00
|
|
|
STARTUP_FILE ?= lib/stm32lib/CMSIS/STM32$(MCU_SERIES_UPPER)xx/Source/Templates/gcc/startup_$(CMSIS_MCU_LOWER).o
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2019-03-28 03:02:57 -04:00
|
|
|
# Select the cross compile prefix
|
|
|
|
CROSS_COMPILE ?= arm-none-eabi-
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2015-10-19 11:22:16 -04:00
|
|
|
INC += -I.
|
2017-08-10 22:22:19 -04:00
|
|
|
INC += -I$(TOP)
|
2014-04-17 13:03:27 -04:00
|
|
|
INC += -I$(BUILD)
|
2017-08-10 22:22:19 -04:00
|
|
|
INC += -I$(TOP)/lib/cmsis/inc
|
2016-09-19 06:56:26 -04:00
|
|
|
INC += -I$(CMSIS_DIR)/
|
2017-08-27 08:36:39 -04:00
|
|
|
INC += -I$(TOP)/$(HAL_DIR)/Inc
|
2015-02-03 05:33:12 -05:00
|
|
|
INC += -I$(USBDEV_DIR)/core/inc -I$(USBDEV_DIR)/class/inc
|
2014-03-13 20:30:37 -04:00
|
|
|
#INC += -I$(USBHOST_DIR)
|
2019-03-04 07:33:02 -05:00
|
|
|
INC += -Ilwip_inc
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-06-23 02:47:36 -04:00
|
|
|
# Basic Cortex-M flags
|
|
|
|
CFLAGS_CORTEX_M = -mthumb
|
|
|
|
|
|
|
|
# Select hardware floating-point support
|
2018-09-05 02:38:25 -04:00
|
|
|
ifeq ($(CMSIS_MCU),$(filter $(CMSIS_MCU),STM32F765xx STM32F767xx STM32F769xx STM32H743xx))
|
2017-06-23 02:47:36 -04:00
|
|
|
CFLAGS_CORTEX_M += -mfpu=fpv5-d16 -mfloat-abi=hard
|
|
|
|
else
|
2018-05-28 04:10:53 -04:00
|
|
|
ifeq ($(MCU_SERIES),f0)
|
|
|
|
CFLAGS_CORTEX_M += -msoft-float
|
|
|
|
else
|
2017-06-23 02:47:36 -04:00
|
|
|
CFLAGS_CORTEX_M += -mfpu=fpv4-sp-d16 -mfloat-abi=hard
|
|
|
|
endif
|
2018-05-28 04:10:53 -04:00
|
|
|
endif
|
2017-06-23 02:47:36 -04:00
|
|
|
|
|
|
|
# Options for particular MCU series
|
2018-05-28 04:10:53 -04:00
|
|
|
CFLAGS_MCU_f0 = $(CFLAGS_CORTEX_M) -mtune=cortex-m0 -mcpu=cortex-m0
|
2018-03-16 19:42:50 -04:00
|
|
|
CFLAGS_MCU_f4 = $(CFLAGS_CORTEX_M) -mtune=cortex-m4 -mcpu=cortex-m4
|
|
|
|
CFLAGS_MCU_f7 = $(CFLAGS_CORTEX_M) -mtune=cortex-m7 -mcpu=cortex-m7
|
|
|
|
CFLAGS_MCU_l4 = $(CFLAGS_CORTEX_M) -mtune=cortex-m4 -mcpu=cortex-m4
|
2018-02-20 17:35:42 -05:00
|
|
|
CFLAGS_MCU_h7 = $(CFLAGS_CORTEX_M) -mtune=cortex-m7 -mcpu=cortex-m7
|
2015-07-28 14:13:33 -04:00
|
|
|
|
2017-06-28 01:44:29 -04:00
|
|
|
CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -std=gnu99 -nostdlib $(CFLAGS_MOD) $(CFLAGS_EXTRA)
|
2015-08-06 03:03:45 -04:00
|
|
|
CFLAGS += -D$(CMSIS_MCU)
|
2015-07-28 14:13:33 -04:00
|
|
|
CFLAGS += $(CFLAGS_MCU_$(MCU_SERIES))
|
|
|
|
CFLAGS += $(COPT)
|
2018-09-04 01:32:43 -04:00
|
|
|
CFLAGS += -I$(BOARD_DIR)
|
2015-07-28 11:36:26 -04:00
|
|
|
CFLAGS += -DSTM32_HAL_H='<stm32$(MCU_SERIES)xx_hal.h>'
|
2018-03-27 06:32:39 -04:00
|
|
|
CFLAGS += -DMICROPY_HW_VTOR=$(TEXT0_ADDR)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-06-28 01:42:40 -04:00
|
|
|
ifeq ($(MICROPY_FLOAT_IMPL),double)
|
2017-06-23 01:53:12 -04:00
|
|
|
CFLAGS += -DMICROPY_FLOAT_IMPL=MICROPY_FLOAT_IMPL_DOUBLE
|
|
|
|
else
|
|
|
|
CFLAGS += -DMICROPY_FLOAT_IMPL=MICROPY_FLOAT_IMPL_FLOAT
|
|
|
|
CFLAGS += -fsingle-precision-constant -Wdouble-promotion
|
|
|
|
endif
|
|
|
|
|
2018-03-27 06:17:48 -04:00
|
|
|
LDFLAGS = -nostdlib -L $(LD_DIR) $(addprefix -T,$(LD_FILES)) -Map=$(@:.elf=.map) --cref
|
2019-06-22 07:26:03 -04:00
|
|
|
LDFLAGS += --defsym=_estack_reserve=8
|
2017-02-07 19:50:22 -05:00
|
|
|
LIBS = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
|
2014-08-16 08:37:05 -04:00
|
|
|
|
2015-11-25 12:24:36 -05:00
|
|
|
# Remove uncalled code from the final image.
|
|
|
|
CFLAGS += -fdata-sections -ffunction-sections
|
|
|
|
LDFLAGS += --gc-sections
|
|
|
|
|
2014-08-16 08:37:05 -04:00
|
|
|
# Debugging/Optimization
|
2014-03-12 02:55:41 -04:00
|
|
|
ifeq ($(DEBUG), 1)
|
|
|
|
CFLAGS += -g -DPENDSV_DEBUG
|
|
|
|
COPT = -O0
|
|
|
|
else
|
|
|
|
COPT += -Os -DNDEBUG
|
|
|
|
endif
|
|
|
|
|
2019-03-13 21:20:39 -04:00
|
|
|
# Options for mpy-cross
|
|
|
|
MPY_CROSS_FLAGS += -march=armv7m
|
|
|
|
|
2014-08-29 17:42:26 -04:00
|
|
|
SRC_LIB = $(addprefix lib/,\
|
2015-04-05 14:44:20 -04:00
|
|
|
libc/string0.c \
|
2017-01-27 07:11:59 -05:00
|
|
|
oofatfs/ff.c \
|
2019-02-25 07:46:17 -05:00
|
|
|
oofatfs/ffunicode.c \
|
2015-01-11 21:15:35 -05:00
|
|
|
mp-readline/readline.c \
|
2015-05-03 14:26:08 -04:00
|
|
|
netutils/netutils.c \
|
2019-02-22 06:20:48 -05:00
|
|
|
netutils/trace.c \
|
2019-06-01 02:11:03 -04:00
|
|
|
netutils/dhcpserver.c \
|
2015-05-10 20:00:19 -04:00
|
|
|
timeutils/timeutils.c \
|
2015-10-31 12:35:10 -04:00
|
|
|
utils/pyexec.c \
|
2017-02-15 00:39:30 -05:00
|
|
|
utils/interrupt_char.c \
|
2017-06-15 04:55:34 -04:00
|
|
|
utils/sys_stdio_mphal.c \
|
2018-12-09 11:07:56 -05:00
|
|
|
utils/mpirq.c \
|
2014-08-29 17:42:26 -04:00
|
|
|
)
|
|
|
|
|
2017-06-28 01:42:40 -04:00
|
|
|
ifeq ($(MICROPY_FLOAT_IMPL),double)
|
2017-06-23 01:53:12 -04:00
|
|
|
SRC_LIBM = $(addprefix lib/libm_dbl/,\
|
|
|
|
__cos.c \
|
|
|
|
__expo2.c \
|
|
|
|
__fpclassify.c \
|
|
|
|
__rem_pio2.c \
|
|
|
|
__rem_pio2_large.c \
|
|
|
|
__signbit.c \
|
|
|
|
__sin.c \
|
|
|
|
__tan.c \
|
|
|
|
acos.c \
|
|
|
|
acosh.c \
|
|
|
|
asin.c \
|
|
|
|
asinh.c \
|
|
|
|
atan.c \
|
|
|
|
atan2.c \
|
|
|
|
atanh.c \
|
|
|
|
ceil.c \
|
|
|
|
cos.c \
|
|
|
|
cosh.c \
|
2018-09-20 02:48:54 -04:00
|
|
|
copysign.c \
|
2017-06-23 01:53:12 -04:00
|
|
|
erf.c \
|
|
|
|
exp.c \
|
|
|
|
expm1.c \
|
|
|
|
floor.c \
|
|
|
|
fmod.c \
|
|
|
|
frexp.c \
|
|
|
|
ldexp.c \
|
|
|
|
lgamma.c \
|
|
|
|
log.c \
|
|
|
|
log10.c \
|
|
|
|
log1p.c \
|
|
|
|
modf.c \
|
|
|
|
nearbyint.c \
|
|
|
|
pow.c \
|
|
|
|
rint.c \
|
|
|
|
scalbn.c \
|
|
|
|
sin.c \
|
|
|
|
sinh.c \
|
|
|
|
sqrt.c \
|
|
|
|
tan.c \
|
|
|
|
tanh.c \
|
|
|
|
tgamma.c \
|
|
|
|
trunc.c \
|
|
|
|
)
|
|
|
|
else
|
|
|
|
SRC_LIBM = $(addprefix lib/libm/,\
|
|
|
|
math.c \
|
|
|
|
acoshf.c \
|
|
|
|
asinfacosf.c \
|
|
|
|
asinhf.c \
|
|
|
|
atan2f.c \
|
|
|
|
atanf.c \
|
|
|
|
atanhf.c \
|
|
|
|
ef_rem_pio2.c \
|
|
|
|
erf_lgamma.c \
|
|
|
|
fmodf.c \
|
|
|
|
kf_cos.c \
|
|
|
|
kf_rem_pio2.c \
|
|
|
|
kf_sin.c \
|
|
|
|
kf_tan.c \
|
|
|
|
log1pf.c \
|
|
|
|
nearbyintf.c \
|
|
|
|
sf_cos.c \
|
|
|
|
sf_erf.c \
|
|
|
|
sf_frexp.c \
|
|
|
|
sf_ldexp.c \
|
|
|
|
sf_modf.c \
|
|
|
|
sf_sin.c \
|
|
|
|
sf_tan.c \
|
|
|
|
wf_lgamma.c \
|
|
|
|
wf_tgamma.c \
|
|
|
|
)
|
2018-05-28 04:10:53 -04:00
|
|
|
ifeq ($(MCU_SERIES),f0)
|
|
|
|
SRC_LIBM += lib/libm/ef_sqrt.c
|
|
|
|
else
|
|
|
|
SRC_LIBM += lib/libm/thumb_vfp_sqrtf.c
|
|
|
|
endif
|
2017-06-23 01:53:12 -04:00
|
|
|
endif
|
|
|
|
|
2017-06-22 02:20:22 -04:00
|
|
|
EXTMOD_SRC_C = $(addprefix extmod/,\
|
|
|
|
modonewire.c \
|
|
|
|
)
|
|
|
|
|
2017-01-24 00:58:50 -05:00
|
|
|
DRIVERS_SRC_C = $(addprefix drivers/,\
|
2018-03-09 01:25:58 -05:00
|
|
|
bus/softspi.c \
|
2018-03-02 07:49:00 -05:00
|
|
|
bus/softqspi.c \
|
2017-01-24 00:58:50 -05:00
|
|
|
memory/spiflash.c \
|
2018-01-31 02:12:53 -05:00
|
|
|
dht/dht.c \
|
2017-01-24 00:58:50 -05:00
|
|
|
)
|
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
SRC_C = \
|
|
|
|
main.c \
|
2015-07-28 13:15:18 -04:00
|
|
|
stm32_it.c \
|
2014-03-13 20:30:37 -04:00
|
|
|
usbd_conf.c \
|
2015-02-03 15:52:48 -05:00
|
|
|
usbd_desc.c \
|
2014-03-13 20:30:37 -04:00
|
|
|
usbd_cdc_interface.c \
|
2016-08-29 17:42:38 -04:00
|
|
|
usbd_hid_interface.c \
|
2019-06-11 00:38:56 -04:00
|
|
|
usbd_msc_interface.c \
|
2015-10-30 19:03:58 -04:00
|
|
|
mphalport.c \
|
2017-01-30 21:59:53 -05:00
|
|
|
mpthreadport.c \
|
2014-08-24 15:21:12 -04:00
|
|
|
irq.c \
|
2014-03-13 20:30:37 -04:00
|
|
|
pendsv.c \
|
2014-03-12 21:06:26 -04:00
|
|
|
systick.c \
|
2018-09-24 00:18:18 -04:00
|
|
|
powerctrl.c \
|
2017-01-30 21:59:53 -05:00
|
|
|
pybthread.c \
|
2019-05-06 01:46:52 -04:00
|
|
|
factoryreset.c \
|
2014-04-02 10:09:36 -04:00
|
|
|
timer.c \
|
2014-03-12 21:06:26 -04:00
|
|
|
led.c \
|
|
|
|
pin.c \
|
2017-09-06 00:09:13 -04:00
|
|
|
pin_defs_stm32.c \
|
2014-03-15 02:41:28 -04:00
|
|
|
pin_named_pins.c \
|
2014-04-21 07:03:09 -04:00
|
|
|
bufhelper.c \
|
2015-06-10 08:06:48 -04:00
|
|
|
dma.c \
|
2018-04-24 03:34:07 -04:00
|
|
|
i2c.c \
|
2018-04-24 02:23:36 -04:00
|
|
|
pyb_i2c.c \
|
2014-04-21 07:03:09 -04:00
|
|
|
spi.c \
|
2018-08-14 03:11:07 -04:00
|
|
|
pyb_spi.c \
|
2018-03-02 08:17:08 -05:00
|
|
|
qspi.c \
|
2014-04-21 07:03:09 -04:00
|
|
|
uart.c \
|
2014-10-02 09:34:15 -04:00
|
|
|
can.c \
|
2014-03-13 20:30:37 -04:00
|
|
|
usb.c \
|
2016-09-03 10:12:48 -04:00
|
|
|
wdt.c \
|
2019-02-22 06:20:48 -05:00
|
|
|
eth.c \
|
2014-03-12 21:06:26 -04:00
|
|
|
gccollect.c \
|
2014-03-24 07:27:56 -04:00
|
|
|
help.c \
|
2016-11-23 08:20:51 -05:00
|
|
|
machine_i2c.c \
|
2018-08-14 03:11:07 -04:00
|
|
|
machine_spi.c \
|
2018-12-07 02:36:43 -05:00
|
|
|
machine_uart.c \
|
2015-10-08 00:26:04 -04:00
|
|
|
modmachine.c \
|
stmhal: Add stm module, which contains some constants for the MCU.
Also contains raw memory read/write functions, read8, read16, read32,
write8, write16, write32. Can now do:
stm.write16(stm.GPIOA + stm.GPIO_BSRRL, 1 << 13)
This turns on the red LED.
With the new constant folding, the above constants for the GPIO address
are actually compiled to constants (and the addition done) at compile
time. For viper code and inline assembler, this optimisation will make
a big difference. In the inline assembler, using these constants would
not be possible without this constant folding.
2014-04-10 17:46:40 -04:00
|
|
|
modpyb.c \
|
|
|
|
modstm.c \
|
2014-10-12 15:35:21 -04:00
|
|
|
moduos.c \
|
|
|
|
modutime.c \
|
2014-09-30 17:29:49 -04:00
|
|
|
modusocket.c \
|
2019-02-22 06:24:01 -05:00
|
|
|
network_lan.c \
|
2014-09-30 17:29:49 -04:00
|
|
|
modnetwork.c \
|
2014-04-18 17:38:09 -04:00
|
|
|
extint.c \
|
2014-03-15 02:41:28 -04:00
|
|
|
usrsw.c \
|
2014-03-22 09:41:02 -04:00
|
|
|
rng.c \
|
2014-03-15 08:54:48 -04:00
|
|
|
rtc.c \
|
2014-03-17 09:31:35 -04:00
|
|
|
flash.c \
|
2018-02-13 06:21:46 -05:00
|
|
|
flashbdev.c \
|
|
|
|
spibdev.c \
|
2014-03-17 09:31:35 -04:00
|
|
|
storage.c \
|
2014-03-17 09:03:41 -04:00
|
|
|
sdcard.c \
|
2018-07-17 17:13:49 -04:00
|
|
|
sdram.c \
|
2016-02-06 08:18:34 -05:00
|
|
|
fatfs_port.c \
|
2014-03-19 09:12:30 -04:00
|
|
|
lcd.c \
|
2014-03-20 19:33:30 -04:00
|
|
|
accel.c \
|
2014-03-22 11:52:33 -04:00
|
|
|
servo.c \
|
2014-03-24 11:15:33 -04:00
|
|
|
dac.c \
|
2014-03-24 13:49:23 -04:00
|
|
|
adc.c \
|
2018-09-04 01:32:43 -04:00
|
|
|
$(wildcard $(BOARD_DIR)/*.c)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2018-05-28 04:10:53 -04:00
|
|
|
ifeq ($(MCU_SERIES),f0)
|
|
|
|
SRC_O = \
|
|
|
|
$(STARTUP_FILE) \
|
|
|
|
system_stm32f0.o \
|
|
|
|
resethandler_m0.o \
|
2019-02-11 22:11:21 -05:00
|
|
|
lib/utils/gchelper_m0.o
|
2018-05-28 04:10:53 -04:00
|
|
|
else
|
2015-07-28 13:15:18 -04:00
|
|
|
SRC_O = \
|
2018-03-05 11:09:41 -05:00
|
|
|
$(STARTUP_FILE) \
|
2018-05-28 04:10:53 -04:00
|
|
|
system_stm32.o \
|
2018-03-29 00:24:21 -04:00
|
|
|
resethandler.o \
|
2019-02-11 22:11:21 -05:00
|
|
|
lib/utils/gchelper_m3.o
|
2018-05-28 04:10:53 -04:00
|
|
|
endif
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-08-27 08:36:39 -04:00
|
|
|
SRC_HAL = $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_,\
|
2015-07-19 07:17:42 -04:00
|
|
|
hal.c \
|
|
|
|
hal_adc.c \
|
|
|
|
hal_adc_ex.c \
|
|
|
|
hal_cortex.c \
|
|
|
|
hal_dma.c \
|
|
|
|
hal_flash.c \
|
|
|
|
hal_flash_ex.c \
|
|
|
|
hal_gpio.c \
|
|
|
|
hal_i2c.c \
|
|
|
|
hal_pcd.c \
|
|
|
|
hal_pcd_ex.c \
|
|
|
|
hal_pwr.c \
|
|
|
|
hal_pwr_ex.c \
|
|
|
|
hal_rcc.c \
|
|
|
|
hal_rcc_ex.c \
|
|
|
|
hal_rtc.c \
|
|
|
|
hal_rtc_ex.c \
|
|
|
|
hal_spi.c \
|
|
|
|
hal_tim.c \
|
|
|
|
hal_tim_ex.c \
|
|
|
|
hal_uart.c \
|
2018-05-28 04:10:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4 f7 h7 l4))
|
|
|
|
SRC_HAL += $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_,\
|
|
|
|
hal_sd.c \
|
2015-07-19 07:17:42 -04:00
|
|
|
ll_sdmmc.c \
|
2018-07-17 17:13:49 -04:00
|
|
|
ll_fmc.c \
|
2015-07-19 07:17:42 -04:00
|
|
|
ll_usb.c \
|
2014-03-12 02:55:41 -04:00
|
|
|
)
|
2018-05-28 04:10:53 -04:00
|
|
|
endif
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2018-07-17 17:13:49 -04:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4 f7 h7))
|
|
|
|
SRC_HAL += $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_,\
|
2019-04-01 00:55:04 -04:00
|
|
|
hal_mmc.c \
|
2018-07-17 17:13:49 -04:00
|
|
|
hal_sdram.c \
|
2018-09-16 23:47:54 -04:00
|
|
|
hal_dma_ex.c \
|
|
|
|
hal_dcmi.c \
|
2018-07-17 17:13:49 -04:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2018-02-20 17:35:42 -05:00
|
|
|
ifeq ($(CMSIS_MCU),$(filter $(CMSIS_MCU),STM32H743xx))
|
|
|
|
SRC_HAL += $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_, hal_fdcan.c)
|
|
|
|
else
|
|
|
|
SRC_HAL += $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_, hal_can.c)
|
|
|
|
endif
|
|
|
|
|
2014-03-13 20:30:37 -04:00
|
|
|
SRC_USBDEV = $(addprefix $(USBDEV_DIR)/,\
|
|
|
|
core/src/usbd_core.c \
|
|
|
|
core/src/usbd_ctlreq.c \
|
|
|
|
core/src/usbd_ioreq.c \
|
2015-02-03 05:33:12 -05:00
|
|
|
class/src/usbd_cdc_msc_hid.c \
|
|
|
|
class/src/usbd_msc_bot.c \
|
|
|
|
class/src/usbd_msc_scsi.c \
|
2014-03-12 02:55:41 -04:00
|
|
|
)
|
|
|
|
|
2019-06-01 02:11:03 -04:00
|
|
|
ifeq ($(MICROPY_PY_NETWORK_CYW43),1)
|
|
|
|
CFLAGS_MOD += -DMICROPY_PY_NETWORK_CYW43=1
|
|
|
|
SRC_C += sdio.c
|
|
|
|
EXTMOD_SRC_C += extmod/network_cyw43.c
|
|
|
|
DRIVERS_SRC_C += drivers/cyw43/cyw43_ctrl.c drivers/cyw43/cyw43_lwip.c
|
|
|
|
LIBS += $(TOP)/drivers/cyw43/libcyw43.a
|
|
|
|
endif
|
|
|
|
|
2017-10-16 00:36:57 -04:00
|
|
|
ifneq ($(MICROPY_PY_WIZNET5K),0)
|
2014-09-01 17:48:57 -04:00
|
|
|
WIZNET5K_DIR=drivers/wiznet5k
|
|
|
|
INC += -I$(TOP)/$(WIZNET5K_DIR)
|
2017-10-16 00:36:57 -04:00
|
|
|
CFLAGS_MOD += -DMICROPY_PY_WIZNET5K=$(MICROPY_PY_WIZNET5K) -D_WIZCHIP_=$(MICROPY_PY_WIZNET5K)
|
stm32: Add network driver for Wiznet5k using MACRAW mode and lwIP.
The Wiznet5k series of chips support a MACRAW mode which allows the host to
send and receive Ethernet frames directly. This can be hooked into the
lwIP stack to provide a full "socket" implementation using this Wiznet
Ethernet device. This patch adds support for this feature.
To enable the feature one must add the following to mpconfigboard.mk, or
mpconfigport.mk:
MICROPY_PY_WIZNET5K = 5500
and the following to mpconfigboard.h, or mpconfigport.h:
#define MICROPY_PY_LWIP (1)
After wiring up the module (X5=CS, X4=RST), usage on a pyboard is:
import time, network
nic = network.WIZNET5K(pyb.SPI(1), pyb.Pin.board.X5, pyb.Pin.board.X4)
nic.active(1)
while not nic.isconnected():
time.sleep_ms(50) # needed to poll the NIC
print(nic.ifconfig())
Then use the socket module as usual.
Compared to using the built-in TCP/IP stack on the Wiznet module, some
performance is lost in MACRAW mode: with a lot of memory allocated to lwIP
buffers, lwIP gives Around 750,000 bytes/sec max TCP download, compared
with 1M/sec when using the TCP/IP stack on the Wiznet module.
2018-06-01 00:21:38 -04:00
|
|
|
SRC_MOD += network_wiznet5k.c modnwwiznet5k.c
|
2014-09-01 17:48:57 -04:00
|
|
|
SRC_MOD += $(addprefix $(WIZNET5K_DIR)/,\
|
2017-10-16 00:36:57 -04:00
|
|
|
ethernet/w$(MICROPY_PY_WIZNET5K)/w$(MICROPY_PY_WIZNET5K).c \
|
2014-09-01 17:48:57 -04:00
|
|
|
ethernet/wizchip_conf.c \
|
|
|
|
ethernet/socket.c \
|
|
|
|
internet/dns/dns.c \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2014-09-25 19:57:26 -04:00
|
|
|
# for CC3000 module
|
|
|
|
ifeq ($(MICROPY_PY_CC3K),1)
|
|
|
|
CC3000_DIR=drivers/cc3000
|
|
|
|
INC += -I$(TOP)/$(CC3000_DIR)/inc
|
|
|
|
CFLAGS_MOD += -DMICROPY_PY_CC3K=1
|
2014-11-29 08:48:45 -05:00
|
|
|
SRC_MOD += modnwcc3k.c
|
2014-09-25 19:57:26 -04:00
|
|
|
SRC_MOD += $(addprefix $(CC3000_DIR)/src/,\
|
|
|
|
cc3000_common.c \
|
|
|
|
evnt_handler.c \
|
|
|
|
hci.c \
|
|
|
|
netapp.c \
|
|
|
|
nvmem.c \
|
|
|
|
security.c \
|
|
|
|
socket.c \
|
|
|
|
wlan.c \
|
|
|
|
ccspi.c \
|
|
|
|
inet_ntop.c \
|
|
|
|
inet_pton.c \
|
2014-09-30 18:43:38 -04:00
|
|
|
patch.c \
|
|
|
|
patch_prog.c \
|
2014-09-25 19:57:26 -04:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2019-06-05 01:35:23 -04:00
|
|
|
ifeq ($(MICROPY_SSL_MBEDTLS),1)
|
|
|
|
CFLAGS_MOD += -DMBEDTLS_CONFIG_FILE='"mbedtls/mbedtls_config.h"'
|
|
|
|
SRC_MOD += mbedtls/mbedtls_port.c
|
|
|
|
endif
|
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
OBJ =
|
2014-03-12 21:06:26 -04:00
|
|
|
OBJ += $(PY_O)
|
2014-08-29 17:42:26 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_LIB:.c=.o))
|
2017-06-23 01:53:12 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_LIBM:.c=.o))
|
2017-06-22 02:20:22 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(EXTMOD_SRC_C:.c=.o))
|
2017-01-24 00:58:50 -05:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(DRIVERS_SRC_C:.c=.o))
|
2014-03-12 02:55:41 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
2015-07-28 13:15:18 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_O))
|
2014-03-12 02:55:41 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_HAL:.c=.o))
|
2014-03-13 20:30:37 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_USBDEV:.c=.o))
|
2014-09-01 17:48:57 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_MOD:.c=.o))
|
2014-03-12 21:06:26 -04:00
|
|
|
OBJ += $(BUILD)/pins_$(BOARD).o
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2018-05-04 01:53:51 -04:00
|
|
|
# This file contains performance critical functions so turn up the optimisation
|
|
|
|
# level. It doesn't add much to the code size and improves performance a bit.
|
|
|
|
# Don't use -O3 with this file because gcc tries to optimise memset in terms of itself.
|
|
|
|
$(BUILD)/lib/libc/string0.o: COPT += -O2
|
|
|
|
|
2016-10-04 01:28:48 -04:00
|
|
|
# We put several files into the first 16K section with the ISRs.
|
2014-08-16 10:45:34 -04:00
|
|
|
# If we compile these using -O0 then it won't fit. So if you really want these
|
2016-10-04 01:28:48 -04:00
|
|
|
# to be compiled with -O0, then edit boards/common.ld (in the .isr_vector section)
|
|
|
|
# and comment out the following lines.
|
2014-12-20 16:15:16 -05:00
|
|
|
$(BUILD)/$(FATFS_DIR)/ff.o: COPT += -Os
|
2016-10-04 01:28:48 -04:00
|
|
|
$(filter $(PY_BUILD)/../extmod/vfs_fat_%.o, $(PY_O)): COPT += -Os
|
|
|
|
$(PY_BUILD)/formatfloat.o: COPT += -Os
|
|
|
|
$(PY_BUILD)/parsenum.o: COPT += -Os
|
|
|
|
$(PY_BUILD)/mpprint.o: COPT += -Os
|
2014-08-16 10:45:34 -04:00
|
|
|
|
2017-08-28 23:50:24 -04:00
|
|
|
all: $(TOP)/lib/stm32lib/README.md $(BUILD)/firmware.dfu $(BUILD)/firmware.hex
|
|
|
|
|
|
|
|
# For convenience, automatically fetch required submodules if they don't exist
|
|
|
|
$(TOP)/lib/stm32lib/README.md:
|
|
|
|
$(ECHO) "stm32lib submodule not found, fetching it now..."
|
|
|
|
(cd $(TOP) && git submodule update --init lib/stm32lib)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2016-01-21 15:41:47 -05:00
|
|
|
ifneq ($(FROZEN_DIR),)
|
2016-10-20 18:27:17 -04:00
|
|
|
# To use frozen source modules, put your .py files in a subdirectory (eg scripts/)
|
|
|
|
# and then invoke make with FROZEN_DIR=scripts (be sure to build from scratch).
|
2016-01-31 17:24:16 -05:00
|
|
|
CFLAGS += -DMICROPY_MODULE_FROZEN_STR
|
2016-01-21 15:41:47 -05:00
|
|
|
endif
|
|
|
|
|
2016-02-25 07:19:40 -05:00
|
|
|
ifneq ($(FROZEN_MPY_DIR),)
|
|
|
|
# To use frozen bytecode, put your .py files in a subdirectory (eg frozen/) and
|
|
|
|
# then invoke make with FROZEN_MPY_DIR=frozen (be sure to build from scratch).
|
|
|
|
CFLAGS += -DMICROPY_QSTR_EXTRA_POOL=mp_qstr_frozen_const_pool
|
|
|
|
CFLAGS += -DMICROPY_MODULE_FROZEN_MPY
|
|
|
|
endif
|
|
|
|
|
2014-05-03 12:46:45 -04:00
|
|
|
.PHONY: deploy
|
2014-04-30 21:51:29 -04:00
|
|
|
|
2014-05-03 12:46:45 -04:00
|
|
|
deploy: $(BUILD)/firmware.dfu
|
2014-04-30 21:51:29 -04:00
|
|
|
$(ECHO) "Writing $< to the board"
|
2014-10-22 01:27:33 -04:00
|
|
|
ifeq ($(USE_PYDFU),1)
|
|
|
|
$(Q)$(PYTHON) $(PYDFU) -u $<
|
|
|
|
else
|
2014-05-03 14:51:47 -04:00
|
|
|
$(Q)$(DFU_UTIL) -a 0 -d $(DEVICE) -D $<
|
2014-10-22 01:27:33 -04:00
|
|
|
endif
|
2014-04-30 21:51:29 -04:00
|
|
|
|
2018-03-27 06:24:15 -04:00
|
|
|
# A board should specify TEXT0_ADDR if to use a different location than the
|
|
|
|
# default for the firmware memory location. A board can also optionally define
|
|
|
|
# TEXT1_ADDR to split the firmware into two sections; see below for details.
|
2018-03-27 06:20:04 -04:00
|
|
|
TEXT0_ADDR ?= 0x08000000
|
2018-03-27 06:24:15 -04:00
|
|
|
|
|
|
|
ifeq ($(TEXT1_ADDR),)
|
|
|
|
# No TEXT1_ADDR given so put all firmware at TEXT0_ADDR location
|
|
|
|
|
2019-03-04 06:26:55 -05:00
|
|
|
TEXT0_SECTIONS ?= .isr_vector .text .data
|
|
|
|
|
2018-03-27 06:24:15 -04:00
|
|
|
deploy-stlink: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $(BUILD)/firmware.bin to the board via ST-LINK"
|
|
|
|
$(Q)$(STFLASH) write $(BUILD)/firmware.bin $(TEXT0_ADDR)
|
|
|
|
|
|
|
|
deploy-openocd: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $(BUILD)/firmware.bin to the board via ST-LINK using OpenOCD"
|
|
|
|
$(Q)$(OPENOCD) -f $(OPENOCD_CONFIG) -c "stm_flash $(BUILD)/firmware.bin $(TEXT0_ADDR)"
|
|
|
|
|
|
|
|
$(BUILD)/firmware.dfu: $(BUILD)/firmware.elf
|
|
|
|
$(ECHO) "Create $@"
|
2019-03-04 06:26:55 -05:00
|
|
|
$(Q)$(OBJCOPY) -O binary $(addprefix -j ,$(TEXT0_SECTIONS)) $^ $(BUILD)/firmware.bin
|
2018-03-27 06:24:15 -04:00
|
|
|
$(Q)$(PYTHON) $(DFU) -b $(TEXT0_ADDR):$(BUILD)/firmware.bin $@
|
|
|
|
|
|
|
|
else
|
|
|
|
# TEXT0_ADDR and TEXT1_ADDR are specified so split firmware between these locations
|
2016-09-28 02:11:36 -04:00
|
|
|
|
2019-03-04 06:26:55 -05:00
|
|
|
TEXT0_SECTIONS ?= .isr_vector
|
|
|
|
TEXT1_SECTIONS ?= .text .data
|
|
|
|
|
2016-03-08 02:42:30 -05:00
|
|
|
deploy-stlink: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $(BUILD)/firmware0.bin to the board via ST-LINK"
|
2018-03-27 06:20:04 -04:00
|
|
|
$(Q)$(STFLASH) write $(BUILD)/firmware0.bin $(TEXT0_ADDR)
|
2016-03-08 02:42:30 -05:00
|
|
|
$(ECHO) "Writing $(BUILD)/firmware1.bin to the board via ST-LINK"
|
2018-03-27 06:20:04 -04:00
|
|
|
$(Q)$(STFLASH) --reset write $(BUILD)/firmware1.bin $(TEXT1_ADDR)
|
2016-03-08 02:42:30 -05:00
|
|
|
|
2016-03-08 05:29:22 -05:00
|
|
|
deploy-openocd: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $(BUILD)/firmware{0,1}.bin to the board via ST-LINK using OpenOCD"
|
2018-03-27 06:20:04 -04:00
|
|
|
$(Q)$(OPENOCD) -f $(OPENOCD_CONFIG) -c "stm_flash $(BUILD)/firmware0.bin $(TEXT0_ADDR) $(BUILD)/firmware1.bin $(TEXT1_ADDR)"
|
2016-03-08 05:29:22 -05:00
|
|
|
|
2014-05-03 12:46:45 -04:00
|
|
|
$(BUILD)/firmware.dfu: $(BUILD)/firmware.elf
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2019-03-04 06:26:55 -05:00
|
|
|
$(Q)$(OBJCOPY) -O binary $(addprefix -j ,$(TEXT0_SECTIONS)) $^ $(BUILD)/firmware0.bin
|
|
|
|
$(Q)$(OBJCOPY) -O binary $(addprefix -j ,$(TEXT1_SECTIONS)) $^ $(BUILD)/firmware1.bin
|
2018-03-27 06:20:04 -04:00
|
|
|
$(Q)$(PYTHON) $(DFU) -b $(TEXT0_ADDR):$(BUILD)/firmware0.bin -b $(TEXT1_ADDR):$(BUILD)/firmware1.bin $@
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2018-03-27 06:24:15 -04:00
|
|
|
endif
|
|
|
|
|
2014-06-20 10:14:55 -04:00
|
|
|
$(BUILD)/firmware.hex: $(BUILD)/firmware.elf
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2014-06-20 10:14:55 -04:00
|
|
|
$(Q)$(OBJCOPY) -O ihex $< $@
|
|
|
|
|
2014-05-03 12:46:45 -04:00
|
|
|
$(BUILD)/firmware.elf: $(OBJ)
|
2014-03-12 02:55:41 -04:00
|
|
|
$(ECHO) "LINK $@"
|
2018-12-12 00:50:55 -05:00
|
|
|
$(Q)$(LD) $(LDFLAGS) -o $@ $^ $(LDFLAGS_MOD) $(LIBS)
|
2014-03-12 02:55:41 -04:00
|
|
|
$(Q)$(SIZE) $@
|
2019-06-24 07:59:58 -04:00
|
|
|
ifneq ($(TEXT0_ADDR),0x08000000)
|
|
|
|
$(ECHO) "INFO: this build requires mboot to be installed first"
|
|
|
|
endif
|
|
|
|
ifeq ($(TEXT1_ADDR),0x90000000)
|
|
|
|
$(ECHO) "INFO: this build places firmware in external QSPI flash"
|
|
|
|
endif
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-08-23 21:38:39 -04:00
|
|
|
PLLVALUES = boards/pllvalues.py
|
2014-03-12 02:55:41 -04:00
|
|
|
MAKE_PINS = boards/make-pins.py
|
2018-09-04 01:32:43 -04:00
|
|
|
BOARD_PINS = $(BOARD_DIR)/pins.csv
|
2014-08-08 17:34:06 -04:00
|
|
|
PREFIX_FILE = boards/stm32f4xx_prefix.c
|
2014-03-12 02:55:41 -04:00
|
|
|
GEN_PINS_SRC = $(BUILD)/pins_$(BOARD).c
|
2014-04-16 17:10:33 -04:00
|
|
|
GEN_PINS_HDR = $(HEADER_BUILD)/pins.h
|
2014-07-22 10:57:36 -04:00
|
|
|
GEN_PINS_QSTR = $(BUILD)/pins_qstr.h
|
2014-08-08 17:34:06 -04:00
|
|
|
GEN_PINS_AF_CONST = $(HEADER_BUILD)/pins_af_const.h
|
2018-07-17 16:22:11 -04:00
|
|
|
GEN_PINS_AF_DEFS = $(HEADER_BUILD)/pins_af_defs.h
|
2014-08-11 02:18:10 -04:00
|
|
|
GEN_PINS_AF_PY = $(BUILD)/pins_af.py
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2017-08-10 22:22:19 -04:00
|
|
|
INSERT_USB_IDS = $(TOP)/tools/insert-usb-ids.py
|
|
|
|
FILE2H = $(TOP)/tools/file2h.py
|
2014-04-10 19:02:10 -04:00
|
|
|
|
2015-10-03 02:25:31 -04:00
|
|
|
USB_IDS_FILE = usb.h
|
2014-04-10 19:02:10 -04:00
|
|
|
CDCINF_TEMPLATE = pybcdc.inf_template
|
2014-04-16 17:10:33 -04:00
|
|
|
GEN_CDCINF_FILE = $(HEADER_BUILD)/pybcdc.inf
|
|
|
|
GEN_CDCINF_HEADER = $(HEADER_BUILD)/pybcdc_inf.h
|
2014-04-10 19:02:10 -04:00
|
|
|
|
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file
- add special rule for generating a central header that contains all
extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED
variable. Each platform appends a list of sources that may contain
qstrings into a new build variable: SRC_QSTR. Any autogenerated
prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable.
- remove most qstrings from py/qstrdefs, keep only qstrings that
contain special characters - these cannot be easily detected in the
sources without additional annotations
- remove most manual qstrdefs, use qstrdef autogen for: py, cc3200,
stmhal, teensy, unix, windows, pic16bit:
- remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.)
- remove all port specific qstrdefs except for special strings
- append sources for qstr generation in platform makefiles (SRC_QSTR)
2016-03-10 04:22:41 -05:00
|
|
|
# List of sources for qstr extraction
|
2017-06-22 02:20:22 -04:00
|
|
|
SRC_QSTR += $(SRC_C) $(SRC_MOD) $(SRC_LIB) $(EXTMOD_SRC_C)
|
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file
- add special rule for generating a central header that contains all
extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED
variable. Each platform appends a list of sources that may contain
qstrings into a new build variable: SRC_QSTR. Any autogenerated
prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable.
- remove most qstrings from py/qstrdefs, keep only qstrings that
contain special characters - these cannot be easily detected in the
sources without additional annotations
- remove most manual qstrdefs, use qstrdef autogen for: py, cc3200,
stmhal, teensy, unix, windows, pic16bit:
- remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.)
- remove all port specific qstrdefs except for special strings
- append sources for qstr generation in platform makefiles (SRC_QSTR)
2016-03-10 04:22:41 -05:00
|
|
|
# Append any auto-generated sources that are needed by sources listed in
|
|
|
|
# SRC_QSTR
|
|
|
|
SRC_QSTR_AUTO_DEPS += $(GEN_CDCINF_HEADER)
|
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
# Making OBJ use an order-only depenedency on the generated pins.h file
|
|
|
|
# has the side effect of making the pins.h file before we actually compile
|
|
|
|
# any of the objects. The normal dependency generation will deal with the
|
|
|
|
# case when pins.h is modified. But when it doesn't exist, we don't know
|
|
|
|
# which source files might need it.
|
2017-08-23 23:09:35 -04:00
|
|
|
$(OBJ): | $(GEN_PINS_HDR)
|
2014-03-12 21:06:26 -04:00
|
|
|
|
2015-08-02 19:23:47 -04:00
|
|
|
# With conditional pins, we may need to regenerate qstrdefs.h when config
|
|
|
|
# options change.
|
2018-09-04 01:32:43 -04:00
|
|
|
$(HEADER_BUILD)/qstrdefs.generated.h: $(BOARD_DIR)/mpconfigboard.h
|
2015-08-02 19:23:47 -04:00
|
|
|
|
2016-04-19 04:54:07 -04:00
|
|
|
# main.c can't be even preprocessed without $(GEN_CDCINF_HEADER)
|
|
|
|
main.c: $(GEN_CDCINF_HEADER)
|
2014-04-10 19:02:10 -04:00
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
# Use a pattern rule here so that make will only call make-pins.py once to make
|
|
|
|
# both pins_$(BOARD).c and pins.h
|
2018-09-04 01:32:43 -04:00
|
|
|
$(BUILD)/%_$(BOARD).c $(HEADER_BUILD)/%.h $(HEADER_BUILD)/%_af_const.h $(HEADER_BUILD)/%_af_defs.h $(BUILD)/%_qstr.h: $(BOARD_DIR)/%.csv $(MAKE_PINS) $(AF_FILE) $(PREFIX_FILE) | $(HEADER_BUILD)
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2019-02-13 21:35:39 -05:00
|
|
|
$(Q)$(PYTHON) $(MAKE_PINS) --board $(BOARD_PINS) --af $(AF_FILE) \
|
|
|
|
--prefix $(PREFIX_FILE) --hdr $(GEN_PINS_HDR) --hdr-obj-decls \
|
|
|
|
--qstr $(GEN_PINS_QSTR) --af-const $(GEN_PINS_AF_CONST) \
|
|
|
|
--af-defs $(GEN_PINS_AF_DEFS) --af-defs-cmp-strings \
|
|
|
|
--af-py $(GEN_PINS_AF_PY) > $(GEN_PINS_SRC)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
|
|
|
$(BUILD)/pins_$(BOARD).o: $(BUILD)/pins_$(BOARD).c
|
|
|
|
$(call compile_c)
|
|
|
|
|
2017-08-23 21:38:39 -04:00
|
|
|
GEN_PLLFREQTABLE_HDR = $(HEADER_BUILD)/pllfreqtable.h
|
2015-08-02 13:42:09 -04:00
|
|
|
GEN_STMCONST_HDR = $(HEADER_BUILD)/modstm_const.h
|
|
|
|
GEN_STMCONST_QSTR = $(BUILD)/modstm_qstr.h
|
2016-01-07 10:09:36 -05:00
|
|
|
GEN_STMCONST_MPZ = $(HEADER_BUILD)/modstm_mpz.h
|
2017-08-27 08:36:39 -04:00
|
|
|
CMSIS_MCU_HDR = $(CMSIS_DIR)/$(CMSIS_MCU_LOWER).h
|
2015-08-02 13:42:09 -04:00
|
|
|
|
2017-08-23 21:38:39 -04:00
|
|
|
modmachine.c: $(GEN_PLLFREQTABLE_HDR)
|
|
|
|
$(GEN_PLLFREQTABLE_HDR): $(PLLVALUES) | $(HEADER_BUILD)
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2018-09-11 02:42:57 -04:00
|
|
|
$(Q)$(PYTHON) $(PLLVALUES) -c $(if $(filter $(MCU_SERIES),f7),--relax-pll48,) file:$(BOARD_DIR)/stm32$(MCU_SERIES)xx_hal_conf.h > $@
|
2017-08-23 21:38:39 -04:00
|
|
|
|
2015-08-02 13:42:09 -04:00
|
|
|
$(BUILD)/modstm.o: $(GEN_STMCONST_HDR)
|
|
|
|
# Use a pattern rule here so that make will only call make-stmconst.py once to
|
|
|
|
# make both modstm_const.h and modstm_qstr.h
|
2015-11-16 03:17:39 -05:00
|
|
|
$(HEADER_BUILD)/%_const.h $(BUILD)/%_qstr.h: $(CMSIS_MCU_HDR) make-stmconst.py | $(HEADER_BUILD)
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN stmconst $@"
|
2016-01-07 10:09:36 -05:00
|
|
|
$(Q)$(PYTHON) make-stmconst.py --qstr $(GEN_STMCONST_QSTR) --mpz $(GEN_STMCONST_MPZ) $(CMSIS_MCU_HDR) > $(GEN_STMCONST_HDR)
|
2015-08-02 13:42:09 -04:00
|
|
|
|
2015-11-16 03:17:39 -05:00
|
|
|
$(GEN_CDCINF_HEADER): $(GEN_CDCINF_FILE) $(FILE2H) | $(HEADER_BUILD)
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2014-04-10 19:02:10 -04:00
|
|
|
$(Q)$(PYTHON) $(FILE2H) $< > $@
|
|
|
|
|
2015-11-16 03:17:39 -05:00
|
|
|
$(GEN_CDCINF_FILE): $(CDCINF_TEMPLATE) $(INSERT_USB_IDS) $(USB_IDS_FILE) | $(HEADER_BUILD)
|
2018-02-23 00:27:30 -05:00
|
|
|
$(ECHO) "GEN $@"
|
2014-04-10 19:02:10 -04:00
|
|
|
$(Q)$(PYTHON) $(INSERT_USB_IDS) $(USB_IDS_FILE) $< > $@
|
|
|
|
|
2017-08-10 22:22:19 -04:00
|
|
|
include $(TOP)/py/mkrules.mk
|