Rename hardware simulation target and reference in README

This commit is contained in:
2024-10-01 17:25:30 +02:00
parent a03d0705f5
commit 295c5b1ccf
2 changed files with 9 additions and 6 deletions

View File

@@ -64,11 +64,6 @@ flash: $(TARGET)
-U lock:w:0xFF:m \
-U flash:w:$<
.PHONY: run
run: $(TARGET)
$(E) "[SIM] $<"
$(Q) $(SIM) -m $(MCU) -f $(FREQ) $<
.PHONY: clean
clean:
$(E) "[REM] $(TARGET)"
@@ -90,6 +85,11 @@ check:
$(E) "[CHK] Not implemented."
$(Q) true
.PHONY: simulate
simulate: $(TARGET)
$(E) "[SIM] $<"
$(Q) $(SIM) -m $(MCU) -f $(FREQ) $<
.PHONY: listen
listen: opt/tools/serial-listen
$(E) "[RUN] $<"