Makefile 766 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. TARGETS = iap modules
  2. BUILDDIR = build
  3. .PHONY: all config $(TARGETS) tools distclean
  4. all: config $(TARGETS)
  5. CFLAGS += -DHARDWARE_$(HARDWARE)
  6. bt6702:
  7. @$(MAKE) HARDWARE=$@
  8. $(TARGETS):
  9. @$(MAKE) -C $@
  10. clean: $(TARGETS)
  11. distclean:
  12. rm -rf build output
  13. output: $(TARGETS)
  14. openocd_ups:
  15. $(shell openocd -f projects/gcc/configs/stm32f4discovery.cfg)
  16. gdb:
  17. $(shell arm-none-eabi-gdb build/stm32bt6702/stm32bt6702.elf)
  18. reset:
  19. st-flash --reset read /dev/null 0x8000000 1
  20. erase:
  21. st-flash --reset erase
  22. iapflash:
  23. st-flash --reset write output/iap.bin 0x8000000
  24. fwflash:
  25. st-flash --reset write output/stm32bt6702.bin 0x8020000
  26. fullflash:
  27. st-flash --reset write output/iap.bin 0x8000000
  28. sleep 1
  29. st-flash --reset write output/stm32bt6702.bin 0x8020000