Makefile 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. TARGETS = projects/gcc/tools iap modules service_hw
  2. BUILDDIR = build
  3. .PHONY: all config $(TARGETS) tools distclean
  4. all: config $(TARGETS)
  5. CFLAGS += -DHARDWARE_$(HARDWARE)
  6. bt6703:
  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/stm32bt6703/stm32bt6703.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_6703:
  25. st-flash --reset write output/stm32bt6703.bin 0x8020000
  26. fwflash_6703_rt:
  27. st-flash --reset write output/stm32bt6703_rt.bin 0x8020000
  28. fullflash_6703:
  29. st-flash --reset write output/iap.bin 0x8000000
  30. sleep 1
  31. st-flash --reset write output/stm32bt6703.bin 0x8020000
  32. fullflash_6703_rt:
  33. st-flash --reset write output/iap.bin 0x8000000
  34. sleep 1
  35. st-flash --reset write output/stm32bt6703_rt.bin 0x8020000
  36. fwflash_6707:
  37. st-flash --reset write output/stm32bt6707.bin 0x8020000
  38. fullflash_6707:
  39. st-flash --reset write output/iap.bin 0x8000000
  40. sleep 1
  41. st-flash --reset write output/stm32bt6707.bin 0x8020000
  42. fullflash_6709:
  43. st-flash --reset write output/iap.bin 0x8000000
  44. sleep 1
  45. st-flash --reset write output/stm32bt6709.bin 0x8020000
  46. fullflash_6709_mts:
  47. st-flash --reset write output/iap.bin 0x8000000
  48. sleep 1
  49. st-flash --reset write output/stm32bt6709_mts.bin 0x8020000
  50. fullflash_6710:
  51. st-flash --reset write output/iap.bin 0x8000000
  52. sleep 1
  53. st-flash --reset write output/stm32bt6710.bin 0x8020000
  54. release_6703:
  55. $(MAKE) -C modules HARDWARE=bt6703 VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release
  56. release_6703_rt:
  57. $(MAKE) -C modules HARDWARE=bt6703_rt VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release
  58. release_6707:
  59. $(MAKE) -C modules HARDWARE=bt6707 VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release
  60. release_6709_mts:
  61. $(MAKE) -C modules HARDWARE=bt6709_mts VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release
  62. release_6709_beeline:
  63. $(MAKE) -C modules HARDWARE=bt6709 VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release
  64. release_6710:
  65. $(MAKE) -C modules HARDWARE=bt6710 VERBOSE=1 DEBUG=0 PRINTF=custom MAC=EC-4C-4D-00-80-0A release