summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/rules.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/rules.mk b/examples/rules.mk
index 07bf9a7df..aac0fbb38 100644
--- a/examples/rules.mk
+++ b/examples/rules.mk
@@ -219,9 +219,10 @@ $(BIN):
@$(MKDIR) -p $@
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
+# due to large size of combined artifacts, only uf2 is uploaded for now
copy-artifact: $(BIN)
- @$(CP) $(BUILD)/$(PROJECT).elf $(BIN)
- @$(CP) $(BUILD)/$(PROJECT).bin $(BIN)
- @$(CP) $(BUILD)/$(PROJECT).hex $(BIN)
@$(CP) $(BUILD)/$(PROJECT).uf2 $(BIN)
+ #@$(CP) $(BUILD)/$(PROJECT).bin $(BIN)
+ #@$(CP) $(BUILD)/$(PROJECT).hex $(BIN)
+ #@$(CP) $(BUILD)/$(PROJECT).elf $(BIN)