diff options
| author | Ha Thach <[email protected]> | 2024-08-19 18:22:13 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-08-19 18:22:13 +0700 |
| commit | ca3925a4c5b8958ec6f49818e78ccf35aba59247 (patch) | |
| tree | 5ff87db052ccfb1a049a4363e48d70b180cee973 /examples/build_system | |
| parent | b8d3c0c4a8e005bcfcc4ed04556e6da54f235ccc (diff) | |
| parent | 635bdc1fcea1d4d9972d4c9960a32250b0245186 (diff) | |
Merge pull request #2708 from BrentK-ADI/max32_port
Add port for Analog Devices MAX32 MCUs
Diffstat (limited to 'examples/build_system')
| -rw-r--r-- | examples/build_system/make/rules.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/build_system/make/rules.mk b/examples/build_system/make/rules.mk index f322dbae6..86de17b6c 100644 --- a/examples/build_system/make/rules.mk +++ b/examples/build_system/make/rules.mk @@ -166,6 +166,11 @@ flash-bmp: $(BUILD)/$(PROJECT).elf debug-bmp: $(BUILD)/$(PROJECT).elf $(GDB) -ex 'target extended-remote $(BMP)' -ex 'monitor swdp_scan' -ex 'attach 1' $< +# --------------- TI Uniflash ----------------- +DSLITE ?= dslite.sh +flash-uniflash: $(BUILD)/$(PROJECT).hex + ${DSLITE} ${UNIFLASH_OPTION} -f $< + #-------------- Artifacts -------------- # Create binary directory |
