1 ###############################################################################
2 # "THE BEER-WARE LICENSE" (Revision 42):
3 # <msmith@FreeBSD.ORG> wrote this file. As long as you retain this notice you
4 # can do whatever you want with this stuff. If we meet some day, and you think
5 # this stuff is worth it, you can buy me a beer in return
6 ###############################################################################
8 # Makefile for building the betaflight firmware.
10 # Invoke this with 'make help' to see the list of supported targets.
12 ###############################################################################
15 # Things that the user might override on the commandline
18 # The target to build, see VALID_TARGETS below
21 # Compile-time options
24 # compile for OpenPilot BootLoader support
27 # compile for External Storage Bootloader support
30 # compile for target loaded into RAM
33 # reserve space for custom defaults
34 CUSTOM_DEFAULTS_EXTENDED ?
= no
37 # empty - ordinary build with all optimizations enabled
38 # RELWITHDEBINFO - ordinary build with debug symbols and all optimizations enabled
39 # GDB - debug build with minimum number of optimizations
42 # Insert the debugging hardfault debugger
43 # releases should not be built with this flag as it does not disable pwm output
46 # Serial port/Device for flashing
47 SERIAL_DEVICE ?
= $(firstword $(wildcard /dev
/ttyACM
*) $(firstword $(wildcard /dev
/ttyUSB
*) no-port-found
))
49 # Flash size (KB). Some low-end chips actually have more flash than advertised, use this to override.
53 ###############################################################################
54 # Things that need to be maintained as the source changes
60 ROOT
:= $(patsubst %/,%,$(dir $(lastword
$(MAKEFILE_LIST
))))
61 SRC_DIR
:= $(ROOT
)/src
/main
62 OBJECT_DIR
:= $(ROOT
)/obj
/main
63 BIN_DIR
:= $(ROOT
)/obj
64 CMSIS_DIR
:= $(ROOT
)/lib
/main
/CMSIS
65 INCLUDE_DIRS
:= $(SRC_DIR
) \
66 $(ROOT
)/src
/main
/target \
67 $(ROOT
)/src
/main
/startup
68 LINKER_DIR
:= $(ROOT
)/src
/link
70 ## V : Set verbosity level based on the V= parameter
73 include $(ROOT
)/make
/build_verbosity.mk
75 # Build tools, so we all share the same versions
76 # import macros common to all supported build systems
77 include $(ROOT
)/make
/system-id.mk
79 # developer preferences, edit these at will, they'll be gitignored
80 -include $(ROOT
)/make
/local.mk
82 # pre-build sanity checks
83 include $(ROOT
)/make
/checks.mk
85 # configure some directories that are relative to wherever ROOT_DIR is located
87 TOOLS_DIR
:= $(ROOT
)/tools
89 BUILD_DIR
:= $(ROOT
)/build
90 DL_DIR
:= $(ROOT
)/downloads
94 # import macros that are OS specific
95 include $(ROOT
)/make
/$(OSFAMILY
).mk
97 # include the tools makefile
98 include $(ROOT
)/make
/tools.mk
100 # default xtal value for F4 targets
103 # used for turning on features like VCP and SDCARD
106 # used to disable features based on flash space shortage (larger number => more features disabled)
107 FEATURE_CUT_LEVEL_SUPPLIED
:= $(FEATURE_CUT_LEVEL
)
110 # The list of targets to build for 'pre-push'
111 PRE_PUSH_TARGET_LIST ?
= STM32F405 STM32F411 STM32F7X2 STM32F745 NUCLEOH743 SITL STM32F4DISCOVERY_DEBUG test-representative
113 include $(ROOT
)/make
/targets.mk
115 REVISION
:= norevision
116 ifeq ($(shell git diff
--shortstat
),)
117 REVISION
:= $(shell git log
-1 --format
="%h")
120 FC_VER_MAJOR
:= $(shell grep
" FC_VERSION_MAJOR" src
/main
/build
/version.h | awk
'{print $$3}' )
121 FC_VER_MINOR
:= $(shell grep
" FC_VERSION_MINOR" src
/main
/build
/version.h | awk
'{print $$3}' )
122 FC_VER_PATCH
:= $(shell grep
" FC_VERSION_PATCH" src
/main
/build
/version.h | awk
'{print $$3}' )
124 FC_VER
:= $(FC_VER_MAJOR
).
$(FC_VER_MINOR
).
$(FC_VER_PATCH
)
126 # Search path for sources
127 VPATH
:= $(SRC_DIR
):$(SRC_DIR
)/startup
128 USBFS_DIR
= $(ROOT
)/lib
/main
/STM32_USB-FS-Device_Driver
129 USBPERIPH_SRC
= $(notdir $(wildcard $(USBFS_DIR
)/src
/*.c
))
130 FATFS_DIR
= $(ROOT
)/lib
/main
/FatFS
131 FATFS_SRC
= $(notdir $(wildcard $(FATFS_DIR
)/*.c
))
133 CSOURCES
:= $(shell find
$(SRC_DIR
) -name
'*.c')
139 # Default Tool options - can be overridden in {mcu}.mk files.
142 OPTIMISE_DEFAULT
:= -Og
144 LTO_FLAGS
:= $(OPTIMISE_DEFAULT
)
145 DEBUG_FLAGS
= -ggdb3
-DDEBUG
150 OPTIMISATION_BASE
:= -flto
-fuse-linker-plugin
-ffast-math
151 OPTIMISE_DEFAULT
:= -O2
152 OPTIMISE_SPEED
:= -Ofast
155 LTO_FLAGS
:= $(OPTIMISATION_BASE
) $(OPTIMISE_SPEED
)
158 VPATH
:= $(VPATH
):$(ROOT
)/make
/mcu
159 VPATH
:= $(VPATH
):$(ROOT
)/make
161 # start specific includes
162 include $(ROOT
)/make
/mcu
/$(TARGET_MCU
).mk
164 # openocd specific includes
165 include $(ROOT
)/make
/openocd.mk
167 # Configure default flash sizes for the targets (largest size specified gets hit first) if flash not specified already.
168 ifeq ($(TARGET_FLASH_SIZE
),)
169 ifneq ($(MCU_FLASH_SIZE
),)
170 TARGET_FLASH_SIZE
:= $(MCU_FLASH_SIZE
)
172 $(error MCU_FLASH_SIZE not configured for target
$(TARGET
))
176 DEVICE_FLAGS
:= $(DEVICE_FLAGS
) -DTARGET_FLASH_SIZE
=$(TARGET_FLASH_SIZE
)
178 ifneq ($(HSE_VALUE
),)
179 DEVICE_FLAGS
:= $(DEVICE_FLAGS
) -DHSE_VALUE
=$(HSE_VALUE
)
182 ifneq ($(FEATURE_CUT_LEVEL_SUPPLIED
),)
183 DEVICE_FLAGS
:= $(DEVICE_FLAGS
) -DFEATURE_CUT_LEVEL
=$(FEATURE_CUT_LEVEL_SUPPLIED
)
184 else ifneq ($(FEATURE_CUT_LEVEL
),)
185 DEVICE_FLAGS
:= $(DEVICE_FLAGS
) -DFEATURE_CUT_LEVEL
=$(FEATURE_CUT_LEVEL
)
188 TARGET_DIR
= $(ROOT
)/src
/main
/target
/$(BASE_TARGET
)
189 TARGET_DIR_SRC
= $(notdir $(wildcard $(TARGET_DIR
)/*.c
))
192 TARGET_FLAGS
:= -DOPBL
$(TARGET_FLAGS
)
193 .DEFAULT_GOAL
:= binary
198 ifeq ($(CUSTOM_DEFAULTS_EXTENDED
),yes
)
199 TARGET_FLAGS
+= -DUSE_CUSTOM_DEFAULTS
=
200 EXTRA_LD_FLAGS
+= -Wl
,--defsym
=USE_CUSTOM_DEFAULTS_EXTENDED
=1
203 INCLUDE_DIRS
:= $(INCLUDE_DIRS
) \
204 $(ROOT
)/lib
/main
/MAVLink
206 INCLUDE_DIRS
:= $(INCLUDE_DIRS
) \
209 VPATH
:= $(VPATH
):$(TARGET_DIR
)
211 include $(ROOT
)/make
/source.mk
213 ###############################################################################
214 # Things that might need changing to use different tools
217 # Find out if ccache is installed on the system
219 RESULT
= $(shell (which
$(CCACHE
) > /dev
/null
2>&1; echo
$$?
) )
225 CROSS_CC
:= $(CCACHE
) $(ARM_SDK_PREFIX
)gcc
226 CROSS_CXX
:= $(CCACHE
) $(ARM_SDK_PREFIX
)g
++
227 CROSS_GDB
:= $(ARM_SDK_PREFIX
)gdb
228 OBJCOPY
:= $(ARM_SDK_PREFIX
)objcopy
229 OBJDUMP
:= $(ARM_SDK_PREFIX
)objdump
230 SIZE
:= $(ARM_SDK_PREFIX
)size
231 DFUSE-PACK
:= src
/utils
/dfuse-pack.py
236 CC_DEBUG_OPTIMISATION
:= $(OPTIMISE_DEFAULT
)
237 CC_DEFAULT_OPTIMISATION
:= $(OPTIMISATION_BASE
) $(OPTIMISE_DEFAULT
)
238 CC_SPEED_OPTIMISATION
:= $(OPTIMISATION_BASE
) $(OPTIMISE_SPEED
)
239 CC_SIZE_OPTIMISATION
:= $(OPTIMISATION_BASE
) $(OPTIMISE_SIZE
)
240 CC_NO_OPTIMISATION
:=
243 # Added after GCC version update, remove once the warnings have been fixed
247 CFLAGS
+= $(ARCH_FLAGS
) \
248 $(addprefix -D
,$(OPTIONS
)) \
249 $(addprefix -I
,$(INCLUDE_DIRS
)) \
252 -Wall
-Wextra
-Wunsafe-loop-optimizations
-Wdouble-promotion \
253 -ffunction-sections \
260 -DUSE_STDPERIPH_DRIVER \
263 -D
'__FORKNAME__="$(FORKNAME)"' \
264 -D
'__TARGET__="$(TARGET)"' \
265 -D
'__REVISION__="$(REVISION)"' \
270 ASFLAGS
= $(ARCH_FLAGS
) \
272 -x assembler-with-cpp \
273 $(addprefix -I
,$(INCLUDE_DIRS
)) \
286 -Wl
,-gc-sections
,-Map
,$(TARGET_MAP
) \
287 -Wl
,-L
$(LINKER_DIR
) \
289 -Wl
,--no-wchar-size-warning \
290 -Wl
,--print-memory-usage \
295 ###############################################################################
296 # No user-serviceable parts below
297 ###############################################################################
299 CPPCHECK
= cppcheck
$(CSOURCES
) --enable
=all --platform
=unix64 \
300 --std
=c99
--inline-suppr
--quiet
--force \
301 $(addprefix -I
,$(INCLUDE_DIRS
)) \
302 -I
/usr
/include -I
/usr
/include/linux
305 TARGET_BASENAME
= $(BIN_DIR
)/$(FORKNAME
)_
$(FC_VER
)_
$(TARGET
)_
$(REVISION
)
308 # Things we will build
310 TARGET_BIN
= $(TARGET_BASENAME
).bin
311 TARGET_HEX
= $(TARGET_BASENAME
).hex
312 TARGET_DFU
= $(TARGET_BASENAME
).dfu
313 TARGET_ZIP
= $(TARGET_BASENAME
).zip
314 TARGET_ELF
= $(OBJECT_DIR
)/$(FORKNAME
)_
$(TARGET
).elf
315 TARGET_EXST_ELF
= $(OBJECT_DIR
)/$(FORKNAME
)_
$(TARGET
)_EXST.elf
316 TARGET_UNPATCHED_BIN
= $(OBJECT_DIR
)/$(FORKNAME
)_
$(TARGET
)_UNPATCHED.bin
317 TARGET_LST
= $(OBJECT_DIR
)/$(FORKNAME
)_
$(TARGET
).lst
318 TARGET_OBJS
= $(addsuffix .o
,$(addprefix $(OBJECT_DIR
)/$(TARGET
)/,$(basename $(SRC
))))
319 TARGET_DEPS
= $(addsuffix .d
,$(addprefix $(OBJECT_DIR
)/$(TARGET
)/,$(basename $(SRC
))))
320 TARGET_MAP
= $(OBJECT_DIR
)/$(FORKNAME
)_
$(TARGET
).map
322 TARGET_EXST_HASH_SECTION_FILE
= $(OBJECT_DIR
)/$(TARGET
)/exst_hash_section.bin
324 CLEAN_ARTIFACTS
:= $(TARGET_BIN
)
325 CLEAN_ARTIFACTS
+= $(TARGET_HEX
)
326 CLEAN_ARTIFACTS
+= $(TARGET_ELF
) $(TARGET_OBJS
) $(TARGET_MAP
)
327 CLEAN_ARTIFACTS
+= $(TARGET_LST
)
328 CLEAN_ARTIFACTS
+= $(TARGET_DFU
)
330 # Make sure build date and revision is updated on every incremental build
331 $(OBJECT_DIR
)/$(TARGET
)/build
/version.o
: $(SRC
)
333 # List of buildable ELF files and their object dependencies.
334 # It would be nice to compute these lists, but that seems to be just beyond make.
336 $(TARGET_LST
): $(TARGET_ELF
)
337 $(V0
) $(OBJDUMP
) -S
--disassemble
$< > $@
340 $(TARGET_BIN
): $(TARGET_ELF
)
341 @echo
"Creating BIN $(TARGET_BIN)" "$(STDOUT)"
342 $(V1
) $(OBJCOPY
) -O binary
$< $@
344 $(TARGET_HEX
): $(TARGET_ELF
)
345 @echo
"Creating HEX $(TARGET_HEX)" "$(STDOUT)"
346 $(V1
) $(OBJCOPY
) -O ihex
--set-start
0x8000000 $< $@
348 $(TARGET_DFU
): $(TARGET_HEX
)
349 @echo
"Creating DFU $(TARGET_DFU)" "$(STDOUT)"
350 $(V1
) $(DFUSE-PACK
) -i
$< $@
353 CLEAN_ARTIFACTS
+= $(TARGET_UNPATCHED_BIN
) $(TARGET_EXST_HASH_SECTION_FILE
) $(TARGET_EXST_ELF
)
355 $(TARGET_UNPATCHED_BIN
): $(TARGET_ELF
)
356 @echo
"Creating BIN (without checksum) $(TARGET_UNPATCHED_BIN)" "$(STDOUT)"
357 $(V1
) $(OBJCOPY
) -O binary
$< $@
359 $(TARGET_BIN
): $(TARGET_UNPATCHED_BIN
)
360 @echo
"Creating EXST $(TARGET_BIN)" "$(STDOUT)"
361 # Linker script should allow .bin generation from a .elf which results in a file that is the same length as the FIRMWARE_SIZE.
362 # These 'dd' commands will pad a short binary to length FIRMWARE_SIZE.
363 $(V1
) dd if
=/dev
/zero ibs
=1k count
=$(FIRMWARE_SIZE
) of
=$(TARGET_BIN
)
364 $(V1
) dd if
=$(TARGET_UNPATCHED_BIN
) of
=$(TARGET_BIN
) conv
=notrunc
366 @echo
"Generating MD5 hash of binary" "$(STDOUT)"
367 $(V1
) openssl dgst
-md5
$(TARGET_BIN
) > $(TARGET_UNPATCHED_BIN
).md5
369 @echo
"Patching MD5 hash into binary" "$(STDOUT)"
370 $(V1
) cat
$(TARGET_UNPATCHED_BIN
).md5 | awk
'{printf("%08x: %s",(1024*$(FIRMWARE_SIZE))-16,$$2);}' | xxd
-r
- $(TARGET_BIN
)
371 $(V1
) echo
$(FIRMWARE_SIZE
) | awk
'{printf("-s 0x%08x -l 16 -c 16 %s",(1024*$$1)-16,"$(TARGET_BIN)");}' | xargs xxd
373 # Note: From the objcopy manual "If you do not specify outfile, objcopy creates a temporary file and destructively renames the result with the name of infile"
374 # Due to this a temporary file must be created and removed, even though we're only extracting data from the input file.
375 # If this temporary file is NOT used the $(TARGET_ELF) is modified, and running make a second time will result in
376 # a) regeneration of $(TARGET_BIN), and
377 # b) the results of $(TARGET_BIN) will not be as expected.
378 @echo
"Extracting HASH section from unpatched EXST elf $(TARGET_ELF)" "$(STDOUT)"
379 $(OBJCOPY
) $(TARGET_ELF
) $(TARGET_EXST_ELF
).tmp
--dump-section .exst_hash
=$(TARGET_EXST_HASH_SECTION_FILE
)
380 rm $(TARGET_EXST_ELF
).tmp
382 @echo
"Patching MD5 hash into HASH section" "$(STDOUT)"
383 $(V1
) cat
$(TARGET_UNPATCHED_BIN
).md5 | awk
'{printf("%08x: %s",64-16,$$2);}' | xxd
-r
- $(TARGET_EXST_HASH_SECTION_FILE
)
385 @echo
"Patching updated HASH section into $(TARGET_EXST_ELF)" "$(STDOUT)"
386 $(OBJCOPY
) $(TARGET_ELF
) $(TARGET_EXST_ELF
) --update-section .exst_hash
=$(TARGET_EXST_HASH_SECTION_FILE
)
388 $(TARGET_HEX
): $(TARGET_BIN
)
389 $(if
$(EXST_ADJUST_VMA
),,$(error
"EXST_ADJUST_VMA not specified"))
391 @echo
"Creating EXST HEX from patched EXST BIN $(TARGET_BIN), VMA Adjust $(EXST_ADJUST_VMA)" "$(STDOUT)"
392 $(V1
) $(OBJCOPY
) -I binary
-O ihex
--adjust-vma
=$(EXST_ADJUST_VMA
) $(TARGET_BIN
) $@
396 $(TARGET_ELF
): $(TARGET_OBJS
) $(LD_SCRIPT
)
397 @echo
"Linking $(TARGET)" "$(STDOUT)"
398 $(V1
) $(CROSS_CC
) -o
$@
$(filter-out %.
ld,$^
) $(LD_FLAGS
)
399 $(V1
) $(SIZE
) $(TARGET_ELF
)
403 ## compile_file takes two arguments: (1) optimisation description string and (2) optimisation compiler flag
405 echo
"%% ($(1)) $<" "$(STDOUT)" && \
406 $(CROSS_CC
) -c
-o
$@
$(CFLAGS
) $(2) $<
410 $(OBJECT_DIR
)/$(TARGET
)/%.o
: %.c
411 $(V1
) mkdir
-p
$(dir $@
)
412 $(V1
) $(if
$(findstring $<,$(NOT_OPTIMISED_SRC
)), \
413 $(call compile_file
,not optimised
, $(CC_NO_OPTIMISATION
)) \
415 $(call compile_file
,debug
,$(CC_DEBUG_OPTIMISATION
)) \
418 $(OBJECT_DIR
)/$(TARGET
)/%.o
: %.c
419 $(V1
) mkdir
-p
$(dir $@
)
420 $(V1
) $(if
$(findstring $<,$(NOT_OPTIMISED_SRC
)), \
421 $(call compile_file
,not optimised
,$(CC_NO_OPTIMISATION
)) \
423 $(if
$(findstring $(subst .
/src
/main
/,,$<),$(SPEED_OPTIMISED_SRC
)), \
424 $(call compile_file
,speed optimised
,$(CC_SPEED_OPTIMISATION
)) \
426 $(if
$(findstring $(subst .
/src
/main
/,,$<),$(SIZE_OPTIMISED_SRC
)), \
427 $(call compile_file
,size optimised
,$(CC_SIZE_OPTIMISATION
)) \
429 $(call compile_file
,optimised
,$(CC_DEFAULT_OPTIMISATION
)) \
436 $(OBJECT_DIR
)/$(TARGET
)/%.o
: %.s
437 $(V1
) mkdir
-p
$(dir $@
)
438 @echo
"%% $(notdir $<)" "$(STDOUT)"
439 $(V1
) $(CROSS_CC
) -c
-o
$@
$(ASFLAGS
) $<
441 $(OBJECT_DIR
)/$(TARGET
)/%.o
: %.S
442 $(V1
) mkdir
-p
$(dir $@
)
443 @echo
"%% $(notdir $<)" "$(STDOUT)"
444 $(V1
) $(CROSS_CC
) -c
-o
$@
$(ASFLAGS
) $<
447 ## all : Build all currently built targets
450 ## all_all : Build all targets (including legacy / unsupported)
451 all_all
: $(VALID_TARGETS
)
453 ## unified : build all Unified Targets
454 unified
: $(UNIFIED_TARGETS
)
456 ## unified_zip : build all Unified Targets as zip files (for posting on GitHub)
457 unified_zip
: $(addsuffix _clean
,$(UNIFIED_TARGETS
)) $(addsuffix _zip
,$(UNIFIED_TARGETS
))
459 ## legacy : Build legacy targets
460 legacy
: $(LEGACY_TARGETS
)
462 ## unsupported : Build unsupported targets
463 unsupported
: $(UNSUPPORTED_TARGETS
)
465 ## pre-push : The minimum verification that should be run before pushing, to check if CI has a chance of succeeding
467 $(MAKE
) $(addsuffix _clean
,$(PRE_PUSH_TARGET_LIST
)) $(PRE_PUSH_TARGET_LIST
) EXTRA_FLAGS
=-Werror
469 ## targets-group-1 : build some targets
470 targets-group-1
: $(GROUP_1_TARGETS
)
472 ## targets-group-2 : build some targets
473 targets-group-2
: $(GROUP_2_TARGETS
)
475 ## targets-group-rest: build the rest of the targets (not listed in the other groups)
476 targets-group-rest
: $(GROUP_OTHER_TARGETS
)
479 $(V0
) @echo
"Building $@" && \
480 $(MAKE
) binary hex TARGET
=$@
&& \
481 echo
"Building $@ succeeded."
486 TARGETS_CLEAN
= $(addsuffix _clean
,$(VALID_TARGETS
))
488 ## clean : clean up temporary / machine-generated files
490 @echo
"Cleaning $(TARGET)"
491 $(V0
) rm -f
$(CLEAN_ARTIFACTS
)
492 $(V0
) rm -rf
$(OBJECT_DIR
)/$(TARGET
)
493 @echo
"Cleaning $(TARGET) succeeded."
495 ## test_clean : clean up temporary / machine-generated files (tests)
500 $(V0
) cd src
/test && $(MAKE
) clean || true
502 ## <TARGET>_clean : clean up one specific target (alias for above)
504 $(V0
) $(MAKE
) -j TARGET
=$(subst _clean
,,$@
) clean
506 ## clean_all : clean all valid targets
507 clean_all
: $(TARGETS_CLEAN
) test_clean
509 TARGETS_FLASH
= $(addsuffix _flash
,$(VALID_TARGETS
))
511 ## <TARGET>_flash : build and flash a target
513 $(V0
) $(MAKE
) hex TARGET
=$(subst _flash
,,$@
)
514 ifneq (,$(findstring /dev
/ttyUSB
,$(SERIAL_DEVICE
)))
515 $(V0
) $(MAKE
) tty_flash TARGET
=$(subst _flash
,,$@
)
517 $(V0
) $(MAKE
) dfu_flash TARGET
=$(subst _flash
,,$@
)
520 ## tty_flash : flash firmware (.hex) onto flight controller via a serial port
522 $(V0
) stty
-F
$(SERIAL_DEVICE
) raw speed
115200 -crtscts cs8
-parenb
-cstopb
-ixon
523 $(V0
) echo
-n
'R' > $(SERIAL_DEVICE
)
524 $(V0
) stm32flash
-w
$(TARGET_HEX
) -v
-g
0x0 -b
115200 $(SERIAL_DEVICE
)
526 ## dfu_flash : flash firmware (.bin) onto flight controller via a DFU mode
528 ifneq (no-port-found
,$(SERIAL_DEVICE
))
529 # potentially this is because the MCU already is in DFU mode, try anyway
530 $(V0
) echo
-n
'R' > $(SERIAL_DEVICE
)
533 $(V0
) $(MAKE
) $(TARGET_DFU
)
534 $(V0
) dfu-util
-a
0 -D
$(TARGET_DFU
) -s
:leave
536 st-flash_
$(TARGET
): $(TARGET_BIN
)
537 $(V0
) st-flash
--reset write
$< 0x08000000
539 ## st-flash : flash firmware (.bin) onto flight controller
540 st-flash
: st-flash_
$(TARGET
)
542 ifneq ($(OPENOCD_COMMAND
),)
543 openocd-gdb
: $(TARGET_ELF
)
544 $(V0
) $(OPENOCD_COMMAND
) & $(CROSS_GDB
) $(TARGET_ELF
) -ex
"target remote localhost:3333" -ex
"load"
547 TARGETS_ZIP
= $(addsuffix _zip
,$(VALID_TARGETS
))
549 ## <TARGET>_zip : build target and zip it (useful for posting to GitHub)
551 $(V0
) $(MAKE
) hex TARGET
=$(subst _zip
,,$@
)
552 $(V0
) $(MAKE
) zip TARGET
=$(subst _zip
,,$@
)
555 $(V0
) zip
$(TARGET_ZIP
) $(TARGET_HEX
)
558 $(V0
) $(MAKE
) -j
$(TARGET_BIN
)
561 $(V0
) $(MAKE
) -j
$(TARGET_HEX
)
563 unbrick_
$(TARGET
): $(TARGET_HEX
)
564 $(V0
) stty
-F
$(SERIAL_DEVICE
) raw speed
115200 -crtscts cs8
-parenb
-cstopb
-ixon
565 $(V0
) stm32flash
-w
$(TARGET_HEX
) -v
-g
0x0 -b
115200 $(SERIAL_DEVICE
)
567 ## unbrick : unbrick flight controller
568 unbrick
: unbrick_
$(TARGET
)
570 ## cppcheck : run static analysis on C source code
571 cppcheck
: $(CSOURCES
)
574 cppcheck-result.xml
: $(CSOURCES
)
575 $(V0
) $(CPPCHECK
) --xml-version
=2 2> cppcheck-result.xml
587 ## version : print firmware version
591 ## help : print this help message and exit
592 help
: Makefile make
/tools.mk
594 @echo
"Makefile for the $(FORKNAME) firmware"
597 @echo
" make [V=<verbosity>] [TARGET=<target>] [OPTIONS=\"<options>\"]"
599 @echo
" make <target> [V=<verbosity>] [OPTIONS=\"<options>\"]"
601 @echo
"Valid TARGET values are: $(VALID_TARGETS)"
603 @sed
-n
's/^## //p' $?
605 ## targets : print a list of all valid target platforms (for consumption by scripts)
607 @echo
"Valid targets: $(VALID_TARGETS)"
608 @echo
"Built targets: $(CI_TARGETS)"
609 @echo
"Unified targets: $(UNIFIED_TARGETS)"
610 @echo
"Legacy targets: $(LEGACY_TARGETS)"
611 @echo
"Unsupported targets: $(UNSUPPORTED_TARGETS)"
612 @echo
"Target: $(TARGET)"
613 @echo
"Base target: $(BASE_TARGET)"
614 @echo
"targets-group-1: $(GROUP_1_TARGETS)"
615 @echo
"targets-group-2: $(GROUP_2_TARGETS)"
616 @echo
"targets-group-rest: $(GROUP_OTHER_TARGETS)"
618 @echo
"targets-group-1: $(words $(GROUP_1_TARGETS)) targets"
619 @echo
"targets-group-2: $(words $(GROUP_2_TARGETS)) targets"
620 @echo
"targets-group-rest: $(words $(GROUP_OTHER_TARGETS)) targets"
621 @echo
"total in all groups $(words $(CI_TARGETS)) targets"
623 ## target-mcu : print the MCU type of the target
627 ## targets-by-mcu : make all targets that have a MCU_TYPE mcu
629 $(V1
) for target in
$${TARGETS}; do \
630 TARGET_MCU_TYPE
=$$($(MAKE
) -s TARGET
=$${target} target-mcu
); \
631 if
[ "$${TARGET_MCU_TYPE}" = "$${MCU_TYPE}" ]; then \
632 if
[ "$${DO_BUILD}" = 1 ]; then \
633 echo
"Building target $${target}..."; \
634 $(MAKE
) TARGET
=$${target}; \
635 if
[ $$?
-ne
0 ]; then \
636 echo
"Building target $${target} failed, aborting."; \
640 echo
-n
"$${target} "; \
646 ## targets-f3 : make all F3 targets
648 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F3 TARGETS
="$(VALID_TARGETS)" DO_BUILD
=1
651 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F3 TARGETS
="$(VALID_TARGETS)"
653 ## targets-f4 : make all F4 targets
655 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F4 TARGETS
="$(VALID_TARGETS)" DO_BUILD
=1
658 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F4 TARGETS
="$(VALID_TARGETS)"
661 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F4 TARGETS
="$(CI_TARGETS)"
663 ## targets-f7 : make all F7 targets
665 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F7 TARGETS
="$(VALID_TARGETS)" DO_BUILD
=1
668 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F7 TARGETS
="$(VALID_TARGETS)"
671 $(V1
) $(MAKE
) -s targets-by-mcu MCU_TYPE
=STM32F7 TARGETS
="$(CI_TARGETS)"
673 ## test : run the Betaflight test suite
674 ## junittest : run the Betaflight test suite, producing Junit XML result files.
675 ## test-representative: run a representative subset of the Betaflight test suite (i.e. run all tests, but run each expanded test only for one target)
676 ## test-all: run the Betaflight test suite including all per-target expanded tests
677 test junittest test-all test-representative
:
678 $(V0
) cd src
/test && $(MAKE
) $@
680 ## test_help : print the help message for the test suite (including a list of the available tests)
682 $(V0
) cd src
/test && $(MAKE
) help
684 ## test_versions : print the compiler versions used for the test suite
686 $(V0
) cd src
/test && $(MAKE
) versions
688 ## test_% : run test 'test_%' from the test suite
690 $(V0
) cd src
/test && $(MAKE
) $@
693 # rebuild everything when makefile changes
694 $(TARGET_OBJS
): Makefile
$(TARGET_DIR
)/target.mk
$(wildcard make
/*)
696 # include auto-generated dependencies
697 -include $(TARGET_DEPS
)