diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 08:31:46 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 08:31:46 +0200 |
commit | 1716621bc7ab29ef28e1ad89f7d9523e11445e47 (patch) | |
tree | 6e7ac4b343e07f587ee115f1145b96011d6bf6db /src | |
parent | 7f02e87f3d34a1ab3878e13b17dd0218c6d1455c (diff) |
esp8266: Use -fm dout to accomodate odd/broken nodemcu boards
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/esp8266/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index d2ae7d8..b709fc0 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -62,7 +62,7 @@ build/0x40000.bin: build/0x00000.bin # also created by commandline for 0x00000.bin program: build/0x00000.bin build/0x40000.bin - ${ESPTOOL} write_flash 0x00000 build/0x00000.bin 0x40000 build/0x40000.bin + ${ESPTOOL} write_flash 0x00000 build/0x00000.bin 0x40000 build/0x40000.bin -fm dout arch_clean: rm -f ${OBJECTS} @@ -85,7 +85,7 @@ arch_help: @echo " PORT = /dev/ttyUSB0" arch_info: - @echo "Counter Overflow: ?/?" + @echo "Counter Overflow: 4294967296/0" @echo "Monitor: /dev/ttyUSB0 115200" .PHONY: arch_clean arch_help arch_info monitor program |