diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-09-23 20:08:02 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-09-23 20:08:02 +0200 |
commit | 69ed847740e3efb5c5ff6319629c93d236150959 (patch) | |
tree | a479305afd898870f2ac0e55fe04be788e768fca /fw/fe310/phone/Makefile | |
parent | 38e19a65fda7a37688320b4b732eb1113bbcbad7 (diff) |
i2s driver fixed; added uart programming;
Diffstat (limited to 'fw/fe310/phone/Makefile')
-rw-r--r-- | fw/fe310/phone/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fw/fe310/phone/Makefile b/fw/fe310/phone/Makefile index 8624962..65de081 100644 --- a/fw/fe310/phone/Makefile +++ b/fw/fe310/phone/Makefile @@ -1,5 +1,5 @@ include ../common.mk -DEPS = main.o mem.o wifi.o cell.o phone.o modem.o timer.o test.o +DEPS = main.o mem.o wifi.o cell.o phone.o modem.o timer.o test.o flash.o lib_eos = eve eos eos-soc eos-dev eos-net eos-ext eos-bsp lib_ecp = @@ -30,3 +30,7 @@ upload: $(TARGET) upload_jlink: $(TARGET) $(OBJCOPY) $(TARGET) -O binary $(TARGET).bin ../bsp/upload --bin ./$(TARGET).bin --addr 0x20000000 --jlink JLinkExe + +upload_my: $(TARGET) + $(OBJCOPY) $(TARGET) -O binary $(TARGET).bin + ../../../util/upload /dev/cu.usbserial-14140 $(TARGET).bin |