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
|
|
|
|
2020-03-04 00:34:27 -05:00
|
|
|
# Files that are generated and needed before the QSTR build.
|
|
|
|
QSTR_GENERATED_HEADERS = $(BUILD)/pins_qstr.h $(BUILD)/modstm_qstr.h
|
|
|
|
|
2014-03-12 02:55:41 -04:00
|
|
|
# qstr definitions (must come before including py.mk)
|
2021-03-16 19:25:16 -04:00
|
|
|
QSTR_DEFS += qstrdefsport.h $(QSTR_GENERATED_HEADERS)
|
|
|
|
QSTR_GLOBAL_DEPENDENCIES += mpconfigboard_common.h $(BOARD_DIR)/mpconfigboard.h $(QSTR_GENERATED_HEADERS)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
ports: Enable error text compression for various ports, but not all.
Enabled on: bare-arm, minimal, unix coverage/dev/minimal, stm32, esp32,
esp8266, cc3200, teensy, qemu-arm, nrf. Not enabled on others to be able
to test the code when the feature is disabled (the default case).
Code size change for this commit:
bare-arm: -600 -0.906%
minimal x86: -308 -0.208%
unix x64: +0 +0.000%
unix nanbox: +0 +0.000%
stm32: -3368 -0.869% PYBV10
cc3200: -1024 -0.558%
esp8266: -2512 -0.368% GENERIC
esp32: -2876 -0.205% GENERIC[incl -3168(data)]
nrf: -1708 -1.173% pca10040
samd: +0 +0.000% ADAFRUIT_ITSYBITSY_M4_EXPRESS
2020-03-04 05:56:44 -05:00
|
|
|
# MicroPython feature configurations
|
|
|
|
MICROPY_ROM_TEXT_COMPRESSION ?= 1
|
|
|
|
|
2019-10-10 08:42:20 -04:00
|
|
|
# File containing description of content to be frozen into firmware.
|
|
|
|
FROZEN_MANIFEST ?= boards/manifest.py
|
2017-01-22 22:37:49 -05:00
|
|
|
|
2021-04-28 02:45:51 -04:00
|
|
|
# Location of mboot (or other bootloader) if the device has one.
|
|
|
|
# Used by machine.bootloader().
|
|
|
|
MBOOT_TEXT0_ADDR ?= 0x08000000
|
|
|
|
|
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
|
|
|
|
2021-08-17 07:16:39 -04:00
|
|
|
GIT_SUBMODULES += lib/libhydrogen lib/lwip lib/mbedtls lib/stm32lib
|
2019-10-13 21:09:06 -04:00
|
|
|
|
2016-09-21 05:49:45 -04:00
|
|
|
LD_DIR=boards
|
2014-03-13 20:30:37 -04:00
|
|
|
USBDEV_DIR=usbdev
|
|
|
|
#USBHOST_DIR=usbhost
|
2017-08-10 22:22:19 -04:00
|
|
|
DFU=$(TOP)/tools/dfu.py
|
2021-01-14 11:00:40 -05:00
|
|
|
MBOOT_PACK_DFU = mboot/mboot_pack_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
|
2020-02-24 01:20:20 -05:00
|
|
|
BOOTLOADER_DFU_USB_VID ?= 0x0483
|
|
|
|
BOOTLOADER_DFU_USB_PID ?= 0xDF11
|
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
|
2021-02-21 19:54:31 -05:00
|
|
|
|
|
|
|
include stm32.mk
|
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
|
2021-02-21 19:54:31 -05:00
|
|
|
INC += -I$(STM32LIB_CMSIS_ABS)/Include
|
|
|
|
INC += -I$(STM32LIB_HAL_ABS)/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
|
|
|
|
2020-04-09 07:59:11 -04:00
|
|
|
CFLAGS += $(INC) -Wall -Wpointer-arith -Werror -Wdouble-promotion -Wfloat-conversion -std=gnu99 -nostdlib $(CFLAGS_MOD) $(CFLAGS_EXTRA)
|
stm32/powerctrl: Support changing frequency on WB MCUs.
This allows changing the frequency to: 100kHz, 200kHz, 400kHz, 800kHz,
1MHz, 2MHz, 4MHz, 8MHz, 16MHz, 32MHz, 64MHz. For frequencies 2MHz and
below, low power run (LPR) mode is enabled automatically.
Signed-off-by: Damien George <damien@micropython.org>
2021-07-22 01:29:14 -04:00
|
|
|
CFLAGS += -D$(CMSIS_MCU) -DUSE_FULL_LL_DRIVER
|
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>'
|
2021-04-28 02:45:51 -04:00
|
|
|
CFLAGS += -DMBOOT_VTOR=$(MBOOT_TEXT0_ADDR)
|
2018-03-27 06:32:39 -04:00
|
|
|
CFLAGS += -DMICROPY_HW_VTOR=$(TEXT0_ADDR)
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2019-12-27 06:47:01 -05:00
|
|
|
# Configure for nan-boxing object model if requested
|
|
|
|
ifeq ($(NANBOX),1)
|
|
|
|
CFLAGS += -DMP_CONFIGFILE='"mpconfigport_nanbox.h"'
|
|
|
|
ifneq ($(MICROPY_FLOAT_IMPL),none)
|
|
|
|
MICROPY_FLOAT_IMPL = double
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Configure floating point support
|
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
|
2019-07-16 00:47:32 -04:00
|
|
|
ifeq ($(MICROPY_FLOAT_IMPL),none)
|
|
|
|
CFLAGS += -DMICROPY_FLOAT_IMPL=MICROPY_FLOAT_IMPL_NONE
|
|
|
|
else
|
2017-06-23 01:53:12 -04:00
|
|
|
CFLAGS += -DMICROPY_FLOAT_IMPL=MICROPY_FLOAT_IMPL_FLOAT
|
2020-04-09 07:59:11 -04:00
|
|
|
CFLAGS += -fsingle-precision-constant
|
2017-06-23 01:53:12 -04:00
|
|
|
endif
|
2019-07-16 00:47:32 -04:00
|
|
|
endif
|
2017-06-23 01:53:12 -04:00
|
|
|
|
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
|
2021-08-17 07:16:39 -04: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
|
2022-03-30 01:18:23 -04:00
|
|
|
COPT ?= -Og
|
2020-11-26 19:38:00 -05:00
|
|
|
# Disable text compression in debug builds
|
|
|
|
MICROPY_ROM_TEXT_COMPRESSION = 0
|
2014-03-12 02:55:41 -04:00
|
|
|
else
|
2022-03-30 01:18:23 -04:00
|
|
|
COPT ?= -Os -DNDEBUG
|
2014-03-12 02:55:41 -04:00
|
|
|
endif
|
|
|
|
|
2020-10-29 02:34:38 -04:00
|
|
|
# Flags for optional C++ source code
|
|
|
|
CXXFLAGS += $(filter-out -Wmissing-prototypes -Wold-style-definition -std=gnu99,$(CFLAGS))
|
|
|
|
CXXFLAGS += $(CXXFLAGS_MOD)
|
|
|
|
ifneq ($(SRC_CXX)$(SRC_MOD_CXX),)
|
2021-03-15 04:30:46 -04:00
|
|
|
LIBSTDCPP_FILE_NAME = "$(shell $(CXX) $(CXXFLAGS) -print-file-name=libstdc++.a)"
|
|
|
|
LDFLAGS += -L"$(shell dirname $(LIBSTDCPP_FILE_NAME))"
|
2020-10-29 02:34:38 -04:00
|
|
|
endif
|
|
|
|
|
2019-03-13 21:20:39 -04:00
|
|
|
# Options for mpy-cross
|
|
|
|
MPY_CROSS_FLAGS += -march=armv7m
|
|
|
|
|
2021-07-09 00:19:15 -04:00
|
|
|
SHARED_SRC_C += $(addprefix shared/,\
|
2015-04-05 14:44:20 -04:00
|
|
|
libc/string0.c \
|
2021-07-09 00:19:15 -04:00
|
|
|
netutils/dhcpserver.c \
|
2015-05-03 14:26:08 -04:00
|
|
|
netutils/netutils.c \
|
2019-02-22 06:20:48 -05:00
|
|
|
netutils/trace.c \
|
2021-07-09 00:19:15 -04:00
|
|
|
readline/readline.c \
|
|
|
|
runtime/gchelper_native.c \
|
|
|
|
runtime/interrupt_char.c \
|
|
|
|
runtime/mpirq.c \
|
|
|
|
runtime/pyexec.c \
|
|
|
|
runtime/stdout_helpers.c \
|
|
|
|
runtime/sys_stdio_mphal.c \
|
2015-05-10 20:00:19 -04:00
|
|
|
timeutils/timeutils.c \
|
2014-08-29 17:42:26 -04:00
|
|
|
)
|
|
|
|
|
2017-06-28 01:42:40 -04:00
|
|
|
ifeq ($(MICROPY_FLOAT_IMPL),double)
|
2020-11-11 20:04:56 -05:00
|
|
|
LIBM_SRC_C += $(addprefix lib/libm_dbl/,\
|
2017-06-23 01:53:12 -04:00
|
|
|
__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 \
|
2020-02-15 13:28:56 -05:00
|
|
|
round.c \
|
2017-06-23 01:53:12 -04:00
|
|
|
scalbn.c \
|
|
|
|
sin.c \
|
|
|
|
sinh.c \
|
|
|
|
tan.c \
|
|
|
|
tanh.c \
|
|
|
|
tgamma.c \
|
|
|
|
trunc.c \
|
|
|
|
)
|
2019-10-27 22:48:51 -04:00
|
|
|
ifeq ($(SUPPORTS_HARDWARE_FP_DOUBLE),1)
|
2020-04-07 00:50:56 -04:00
|
|
|
LIBM_SRC_C += lib/libm_dbl/thumb_vfp_sqrt.c
|
2019-10-09 07:59:35 -04:00
|
|
|
else
|
2020-04-07 00:50:56 -04:00
|
|
|
LIBM_SRC_C += lib/libm_dbl/sqrt.c
|
2019-10-09 07:59:35 -04:00
|
|
|
endif
|
2017-06-23 01:53:12 -04:00
|
|
|
else
|
2020-11-11 20:04:56 -05:00
|
|
|
LIBM_SRC_C += $(addprefix lib/libm/,\
|
2017-06-23 01:53:12 -04:00
|
|
|
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 \
|
2020-03-24 03:11:36 -04:00
|
|
|
roundf.c \
|
2017-06-23 01:53:12 -04:00
|
|
|
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 \
|
|
|
|
)
|
2019-10-27 22:48:51 -04:00
|
|
|
ifeq ($(SUPPORTS_HARDWARE_FP_SINGLE),1)
|
2020-04-07 00:50:56 -04:00
|
|
|
LIBM_SRC_C += lib/libm/thumb_vfp_sqrtf.c
|
2019-10-27 22:48:51 -04:00
|
|
|
else
|
2020-04-07 00:50:56 -04:00
|
|
|
LIBM_SRC_C += lib/libm/ef_sqrt.c
|
2018-05-28 04:10:53 -04:00
|
|
|
endif
|
2017-06-23 01:53:12 -04:00
|
|
|
endif
|
|
|
|
|
2020-04-07 00:50:56 -04:00
|
|
|
LIBM_O = $(addprefix $(BUILD)/, $(LIBM_SRC_C:.c=.o))
|
2020-04-09 07:59:11 -04:00
|
|
|
|
|
|
|
# Too many warnings in libm_dbl, disable for now.
|
|
|
|
ifeq ($(MICROPY_FLOAT_IMPL),double)
|
2020-04-07 00:50:56 -04:00
|
|
|
$(LIBM_O): CFLAGS := $(filter-out -Wdouble-promotion -Wfloat-conversion, $(CFLAGS))
|
2020-04-09 07:59:11 -04:00
|
|
|
endif
|
|
|
|
|
2020-11-11 20:04:56 -05:00
|
|
|
EXTMOD_SRC_C += $(addprefix extmod/,\
|
2017-06-22 02:20:22 -04:00
|
|
|
modonewire.c \
|
2021-08-22 11:26:13 -04:00
|
|
|
modnetwork.c \
|
|
|
|
modusocket.c \
|
|
|
|
)
|
2017-06-22 02:20:22 -04:00
|
|
|
|
2020-11-11 20:04:56 -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
|
|
|
)
|
|
|
|
|
2020-10-02 01:46:13 -04:00
|
|
|
SRC_C += \
|
2020-10-27 09:44:18 -04:00
|
|
|
boardctrl.c \
|
2014-03-12 02:55:41 -04:00
|
|
|
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 \
|
2021-08-22 11:26:13 -04:00
|
|
|
mpnetworkport.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 \
|
2019-10-23 01:56:14 -04:00
|
|
|
softtimer.c \
|
2018-09-24 00:18:18 -04:00
|
|
|
powerctrl.c \
|
2019-07-08 01:07:39 -04:00
|
|
|
powerctrlboot.c \
|
2019-10-31 23:52:17 -04:00
|
|
|
rfcore.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 \
|
2019-09-15 19:56:38 -04:00
|
|
|
fdcan.c \
|
2019-09-11 23:54:35 -04:00
|
|
|
pyb_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 \
|
2019-07-19 22:37:58 -04:00
|
|
|
machine_adc.c \
|
2021-08-09 11:09:31 -04:00
|
|
|
machine_bitstream.c \
|
2016-11-23 08:20:51 -05:00
|
|
|
machine_i2c.c \
|
2021-04-17 00:27:40 -04:00
|
|
|
machine_i2s.c \
|
2018-08-14 03:11:07 -04:00
|
|
|
machine_spi.c \
|
2019-10-23 01:56:38 -04:00
|
|
|
machine_timer.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
|
|
|
modutime.c \
|
2019-02-22 06:24:01 -05:00
|
|
|
network_lan.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
|
|
|
|
2020-10-29 02:34:38 -04:00
|
|
|
SRC_CXX += \
|
|
|
|
$(SRC_MOD_CXX)
|
|
|
|
|
2020-10-02 01:46:13 -04:00
|
|
|
SRC_O += \
|
2018-05-28 04:10:53 -04:00
|
|
|
$(STARTUP_FILE) \
|
2019-07-08 01:16:26 -04:00
|
|
|
$(SYSTEM_FILE)
|
|
|
|
|
|
|
|
ifeq ($(MCU_SERIES),f0)
|
|
|
|
SRC_O += \
|
2018-05-28 04:10:53 -04:00
|
|
|
resethandler_m0.o \
|
2021-07-09 00:19:15 -04:00
|
|
|
shared/runtime/gchelper_m0.o
|
2018-05-28 04:10:53 -04:00
|
|
|
else
|
2019-07-05 03:24:59 -04:00
|
|
|
ifeq ($(MCU_SERIES),l0)
|
|
|
|
CSUPEROPT = -Os # save some code space
|
2019-07-08 01:16:26 -04:00
|
|
|
SRC_O += \
|
2019-07-05 03:24:59 -04:00
|
|
|
resethandler_m0.o \
|
2021-07-09 00:19:15 -04:00
|
|
|
shared/runtime/gchelper_m0.o
|
2019-07-05 03:24:59 -04:00
|
|
|
else
|
2019-07-08 01:16:26 -04:00
|
|
|
SRC_O += \
|
2018-05-28 04:10:53 -04:00
|
|
|
system_stm32.o \
|
2018-03-29 00:24:21 -04:00
|
|
|
resethandler.o \
|
2021-07-09 00:19:15 -04:00
|
|
|
shared/runtime/gchelper_m3.o
|
2018-05-28 04:10:53 -04:00
|
|
|
endif
|
2019-07-05 03:24:59 -04:00
|
|
|
endif
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/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_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 \
|
stm32/powerctrl: Support changing frequency on WB MCUs.
This allows changing the frequency to: 100kHz, 200kHz, 400kHz, 800kHz,
1MHz, 2MHz, 4MHz, 8MHz, 16MHz, 32MHz, 64MHz. For frequencies 2MHz and
below, low power run (LPR) mode is enabled automatically.
Signed-off-by: Damien George <damien@micropython.org>
2021-07-22 01:29:14 -04:00
|
|
|
ll_utils.c \
|
2018-05-28 04:10:53 -04:00
|
|
|
)
|
|
|
|
|
2021-02-21 19:55:12 -05:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4 f7 g4 h7 l0 l4 wb))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_,\
|
2021-02-21 19:55:12 -05:00
|
|
|
hal_pcd.c \
|
|
|
|
hal_pcd_ex.c \
|
2019-07-16 00:45:53 -04:00
|
|
|
ll_usb.c \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2018-05-28 04:10:53 -04:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4 f7 h7 l4))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_,\
|
2018-05-28 04:10:53 -04:00
|
|
|
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 \
|
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))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/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
|
|
|
)
|
2021-11-28 21:26:14 -05:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4))
|
|
|
|
# HAL F4-1.16.0 has a bug with missing parentheses in HAL_MMC_Erase.
|
|
|
|
# This function is unused so let the error go by as a warning.
|
2021-02-21 19:54:31 -05:00
|
|
|
$(BUILD)/$(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_hal_mmc.o: CFLAGS += -Wno-error=parentheses
|
2021-11-28 21:26:14 -05:00
|
|
|
endif
|
2018-07-17 17:13:49 -04:00
|
|
|
endif
|
|
|
|
|
2021-01-26 08:49:56 -05:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),g4))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_, hal_fdcan.c)
|
2021-01-26 08:49:56 -05:00
|
|
|
endif
|
|
|
|
|
2021-09-15 09:08:16 -04:00
|
|
|
ifeq ($(CMSIS_MCU),$(filter $(CMSIS_MCU),STM32H743xx STM32H750xx STM32H7A3xx STM32H7A3xxQ STM32H7B3xx STM32H7B3xxQ))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_, hal_fdcan.c)
|
2018-02-20 17:35:42 -05:00
|
|
|
else
|
2021-12-13 08:00:35 -05:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f0 f4 f7 h7))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_, hal_can.c)
|
2021-12-13 08:00:35 -05:00
|
|
|
else
|
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),l4))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/Legacy/stm32$(MCU_SERIES)xx_, hal_can.c)
|
|
|
|
$(BUILD)/$(STM32LIB_HAL_BASE)/Src/Legacy/stm32$(MCU_SERIES)xx_hal_can.o: CFLAGS += -Wno-error=cpp
|
2021-12-13 08:00:35 -05:00
|
|
|
endif
|
2018-02-20 17:35:42 -05:00
|
|
|
endif
|
2019-07-05 03:24:59 -04:00
|
|
|
endif
|
2018-02-20 17:35:42 -05:00
|
|
|
|
2021-04-17 00:27:40 -04:00
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f0 f4 f7 l0))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_,\
|
2021-04-17 00:27:40 -04:00
|
|
|
hal_i2s.c \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MCU_SERIES),$(filter $(MCU_SERIES),f4))
|
2021-02-21 19:54:31 -05:00
|
|
|
HAL_SRC_C += $(addprefix $(STM32LIB_HAL_BASE)/Src/stm32$(MCU_SERIES)xx_,\
|
2021-04-17 00:27:40 -04:00
|
|
|
hal_i2s_ex.c \
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2020-11-11 20:04:56 -05:00
|
|
|
USBDEV_SRC_C += $(addprefix $(USBDEV_DIR)/,\
|
2014-03-13 20:30:37 -04:00
|
|
|
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-09-29 22:23:00 -04:00
|
|
|
ifeq ($(MICROPY_PY_BLUETOOTH),1)
|
|
|
|
CFLAGS_MOD += -DMICROPY_PY_BLUETOOTH=1
|
|
|
|
CFLAGS_MOD += -DMICROPY_PY_BLUETOOTH_ENABLE_CENTRAL_MODE=1
|
|
|
|
endif
|
|
|
|
|
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)
|
2019-12-12 20:36:12 -05:00
|
|
|
ifeq ($(MICROPY_PY_LWIP),1)
|
|
|
|
# When using MACRAW mode (with lwIP), maximum buffer space must be used for the raw socket
|
|
|
|
CFLAGS_MOD += -DWIZCHIP_USE_MAX_BUFFER
|
|
|
|
endif
|
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
|
2020-07-02 15:34:36 -04:00
|
|
|
# replace mbedtls' error.c by ours
|
|
|
|
SRC_MOD := $(filter-out %/mbedtls/library/error.c, $(SRC_MOD))
|
|
|
|
LIB_SRC_C += lib/mbedtls_errors/mp_mbedtls_errors.c
|
2019-06-05 01:35:23 -04:00
|
|
|
endif
|
|
|
|
|
2020-02-19 22:27:30 -05:00
|
|
|
ifeq ($(MICROPY_PY_BLUETOOTH),1)
|
|
|
|
|
2020-08-14 01:43:09 -04:00
|
|
|
SRC_C += mpbthciport.c
|
2020-02-19 22:35:07 -05:00
|
|
|
|
2020-02-19 22:41:34 -05:00
|
|
|
ifeq ($(MICROPY_BLUETOOTH_NIMBLE),1)
|
|
|
|
ifeq ($(MICROPY_BLUETOOTH_BTSTACK),1)
|
|
|
|
$(error Cannot enable both NimBLE and BTstack at the same time)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-09-29 09:04:58 -04:00
|
|
|
ifeq ($(MICROPY_BLUETOOTH_NIMBLE),1)
|
2021-07-23 04:28:57 -04:00
|
|
|
GIT_SUBMODULES += lib/mynewt-nimble
|
2020-10-15 09:15:16 -04:00
|
|
|
CFLAGS_MOD += -DMICROPY_PY_BLUETOOTH_ENABLE_L2CAP_CHANNELS=1
|
2019-09-29 09:04:58 -04:00
|
|
|
include $(TOP)/extmod/nimble/nimble.mk
|
2020-08-14 01:43:09 -04:00
|
|
|
SRC_C += mpnimbleport.c
|
2020-02-19 22:27:30 -05:00
|
|
|
endif
|
|
|
|
|
2020-02-19 22:41:34 -05:00
|
|
|
ifeq ($(MICROPY_BLUETOOTH_BTSTACK),1)
|
2021-07-23 04:28:57 -04:00
|
|
|
GIT_SUBMODULES += lib/btstack
|
2020-08-14 01:43:09 -04:00
|
|
|
MICROPY_BLUETOOTH_BTSTACK_H4 ?= 1
|
2020-02-19 22:41:34 -05:00
|
|
|
include $(TOP)/extmod/btstack/btstack.mk
|
2020-08-14 01:43:09 -04:00
|
|
|
SRC_C += mpbtstackport.c
|
2020-02-19 22:41:34 -05:00
|
|
|
endif
|
|
|
|
|
2019-09-29 09:04:58 -04:00
|
|
|
ifeq ($(MICROPY_PY_NETWORK_CYW43),1)
|
|
|
|
DRIVERS_SRC_C += drivers/cyw43/cywbt.c
|
|
|
|
endif
|
2020-02-19 22:27:30 -05:00
|
|
|
|
2019-09-29 09:04:58 -04:00
|
|
|
endif
|
|
|
|
|
2014-03-12 21:06:26 -04:00
|
|
|
OBJ += $(PY_O)
|
2020-04-07 00:50:56 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(LIB_SRC_C:.c=.o))
|
2020-04-09 07:59:11 -04:00
|
|
|
OBJ += $(LIBM_O)
|
2021-07-09 00:19:15 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SHARED_SRC_C:.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))
|
2020-11-11 20:04:56 -05:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(HAL_SRC_C:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(USBDEV_SRC_C:.c=.o))
|
2014-03-12 02:55:41 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
2020-10-29 02:34:38 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_CXX:.cpp=.o))
|
2015-07-28 13:15:18 -04:00
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_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.
|
2021-07-09 00:19:15 -04:00
|
|
|
$(BUILD)/shared/libc/string0.o: COPT += -O2
|
2018-05-04 01:53:51 -04:00
|
|
|
|
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.
|
2019-11-07 02:27:51 -05:00
|
|
|
$(BUILD)/$(OOFATFS_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
|
|
|
|
2021-01-14 11:00:40 -05:00
|
|
|
all: $(TOP)/lib/stm32lib/README.md all_main $(BUILD)/firmware.hex
|
|
|
|
|
|
|
|
ifeq ($(MBOOT_ENABLE_PACKING),1)
|
|
|
|
all_main: $(BUILD)/firmware.pack.dfu
|
|
|
|
else
|
|
|
|
all_main: $(BUILD)/firmware.dfu
|
|
|
|
endif
|
2017-08-28 23:50:24 -04:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2021-12-08 00:04:11 -05:00
|
|
|
ifneq ($(FROZEN_MANIFEST),)
|
2016-02-25 07:19:40 -05:00
|
|
|
CFLAGS += -DMICROPY_QSTR_EXTRA_POOL=mp_qstr_frozen_const_pool
|
|
|
|
CFLAGS += -DMICROPY_MODULE_FROZEN_MPY
|
2021-12-08 00:04:11 -05:00
|
|
|
CFLAGS += -DMICROPY_MODULE_FROZEN_STR
|
2016-02-25 07:19:40 -05:00
|
|
|
endif
|
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
define RUN_DFU
|
|
|
|
$(ECHO) "Writing $(1) to the board"
|
|
|
|
$(if $(filter $(USE_PYDFU),1),\
|
|
|
|
$(Q)$(PYTHON) $(PYDFU) --vid $(BOOTLOADER_DFU_USB_VID) --pid $(BOOTLOADER_DFU_USB_PID) -u $(1),
|
|
|
|
$(Q)$(DFU_UTIL) -a 0 -d $(BOOTLOADER_DFU_USB_VID):$(BOOTLOADER_DFU_USB_PID) -D $(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define RUN_STLINK
|
|
|
|
$(ECHO) "Writing $(1) to the board via ST-LINK"
|
|
|
|
$(Q)$(STFLASH) write $(1) $(2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define RUN_OPENOCD
|
|
|
|
$(ECHO) "Writing $(1) to the board via ST-LINK using OpenOCD"
|
|
|
|
$(Q)$(OPENOCD) -f $(OPENOCD_CONFIG) -c "stm_flash $(1) $(2) $(3) $(4)"
|
|
|
|
endef
|
|
|
|
|
|
|
|
define GENERATE_ELF
|
|
|
|
$(ECHO) "LINK $(1)"
|
|
|
|
$(Q)$(LD) $(LDFLAGS) -o $(1) $(2) $(LDFLAGS_MOD) $(LIBS)
|
|
|
|
$(Q)$(SIZE) $(1)
|
|
|
|
$(if $(filter-out $(TEXT0_ADDR),0x08000000), \
|
|
|
|
$(ECHO) "INFO: this build requires mboot to be installed first")
|
|
|
|
$(if $(filter $(TEXT1_ADDR),0x90000000), \
|
|
|
|
$(ECHO) "INFO: this build places firmware in external QSPI flash")
|
|
|
|
endef
|
|
|
|
|
|
|
|
define GENERATE_BIN
|
|
|
|
$(ECHO) "GEN $(1)"
|
|
|
|
$(Q)$(OBJCOPY) -O binary $(addprefix -j ,$(3)) $(2) $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define GENERATE_DFU
|
|
|
|
$(ECHO) "GEN $(1)"
|
|
|
|
$(Q)$(PYTHON) $(DFU) \
|
|
|
|
-D $(BOOTLOADER_DFU_USB_VID):$(BOOTLOADER_DFU_USB_PID) \
|
|
|
|
$(if $(2),$(addprefix -b ,$(3):$(2))) \
|
|
|
|
$(if $(4),$(addprefix -b ,$(5):$(4))) \
|
|
|
|
$(1)
|
|
|
|
endef
|
|
|
|
|
2021-01-14 11:00:40 -05:00
|
|
|
define GENERATE_PACK_DFU
|
|
|
|
$(ECHO) "GEN $(1)"
|
|
|
|
$(Q)$(PYTHON) $(MBOOT_PACK_DFU) --keys $(MBOOT_PACK_KEYS_FILE) pack-dfu --gzip $(MBOOT_PACK_CHUNKSIZE) $(2) $(1)
|
|
|
|
endef
|
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
define GENERATE_HEX
|
|
|
|
$(ECHO) "GEN $(1)"
|
|
|
|
$(Q)$(OBJCOPY) -O ihex $(2) $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
.PHONY: deploy deploy-stlink deploy-openocd
|
2014-04-30 21:51:29 -04:00
|
|
|
|
2021-01-14 11:00:40 -05:00
|
|
|
ifeq ($(MBOOT_ENABLE_PACKING),1)
|
|
|
|
deploy: $(BUILD)/firmware.pack.dfu
|
|
|
|
$(call RUN_DFU,$^)
|
|
|
|
else
|
2014-05-03 12:46:45 -04:00
|
|
|
deploy: $(BUILD)/firmware.dfu
|
2020-11-04 07:26:56 -05:00
|
|
|
$(call RUN_DFU,$^)
|
2021-01-14 11:00:40 -05: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
|
|
|
|
|
2021-04-05 22:11:15 -04:00
|
|
|
TEXT0_SECTIONS ?= .isr_vector .text .data .ARM
|
2019-03-04 06:26:55 -05:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
deploy-stlink: $(BUILD)/firmware.bin
|
|
|
|
$(call RUN_STLINK,$^,$(TEXT0_ADDR))
|
|
|
|
|
|
|
|
deploy-openocd: $(BUILD)/firmware.bin
|
|
|
|
$(call RUN_OPENOCD,$^,$(TEXT0_ADDR))
|
2018-03-27 06:24:15 -04:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
$(BUILD)/firmware.bin: $(BUILD)/firmware.elf
|
|
|
|
$(call GENERATE_BIN,$@,$^,$(TEXT0_SECTIONS))
|
2018-03-27 06:24:15 -04:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
$(BUILD)/firmware.dfu: $(BUILD)/firmware.bin
|
|
|
|
$(call GENERATE_DFU,$@,$^,$(TEXT0_ADDR))
|
2018-03-27 06:24:15 -04:00
|
|
|
|
|
|
|
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
|
2021-04-05 22:11:15 -04:00
|
|
|
TEXT1_SECTIONS ?= .text .data .ARM
|
2019-03-04 06:26:55 -05:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
deploy-stlink: $(BUILD)/firmware0.bin $(BUILD)/firmware1.bin
|
|
|
|
$(call RUN_STLINK,$(word 1,$^),$(TEXT0_ADDR))
|
|
|
|
$(call RUN_STLINK,$(word 2,$^),$(TEXT1_ADDR))
|
2016-03-08 02:42:30 -05:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
deploy-openocd: $(BUILD)/firmware0.bin $(BUILD)/firmware1.bin
|
|
|
|
$(call RUN_OPENOCD,$(word 1,$^),$(TEXT0_ADDR),$(word 2,$^),$(TEXT1_ADDR))
|
2016-03-08 05:29:22 -05:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
$(BUILD)/firmware0.bin: $(BUILD)/firmware.elf
|
|
|
|
$(call GENERATE_BIN,$@,$^,$(TEXT0_SECTIONS))
|
2014-03-12 02:55:41 -04:00
|
|
|
|
2020-11-04 07:26:56 -05:00
|
|
|
$(BUILD)/firmware1.bin: $(BUILD)/firmware.elf
|
|
|
|
$(call GENERATE_BIN,$@,$^,$(TEXT1_SECTIONS))
|
|
|
|
|
|
|
|
$(BUILD)/firmware.dfu: $(BUILD)/firmware0.bin $(BUILD)/firmware1.bin
|
|
|
|
$(call GENERATE_DFU,$@,$(word 1,$^),$(TEXT0_ADDR),$(word 2,$^),$(TEXT1_ADDR))
|
2018-03-27 06:24:15 -04:00
|
|
|
endif
|
|
|
|
|
2021-01-17 21:52:47 -05:00
|
|
|
$(BUILD)/firmware.pack.dfu: $(BUILD)/firmware.dfu $(MBOOT_PACK_KEYS_FILE)
|
2021-01-14 11:00:40 -05:00
|
|
|
$(call GENERATE_PACK_DFU,$@,$<)
|
|
|
|
|
2014-06-20 10:14:55 -04:00
|
|
|
$(BUILD)/firmware.hex: $(BUILD)/firmware.elf
|
2020-11-04 07:26:56 -05:00
|
|
|
$(call GENERATE_HEX,$@,$^)
|
2014-06-20 10:14:55 -04:00
|
|
|
|
2014-05-03 12:46:45 -04:00
|
|
|
$(BUILD)/firmware.elf: $(OBJ)
|
2020-11-04 07:26:56 -05:00
|
|
|
$(call GENERATE_ELF,$@,$^)
|
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
|
|
|
|
2021-07-31 21:04:15 -04:00
|
|
|
USB_IDS_FILE = mpconfigboard_common.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
|
2021-07-09 00:19:15 -04:00
|
|
|
SRC_QSTR += $(SRC_C) $(SRC_CXX) $(SRC_MOD) $(SHARED_SRC_C) $(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
|
2021-02-21 19:54:31 -05:00
|
|
|
CMSIS_MCU_HDR = $(STM32LIB_CMSIS_ABS)/Include/$(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 $@"
|
2021-04-06 22:05:00 -04:00
|
|
|
$(Q)$(PYTHON) $(PLLVALUES) -c -m $(CMSIS_MCU_LOWER) 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
|