diff --git a/ap_fw/cpu/8051/make.mk b/ap_fw/cpu/8051/make.mk index 60d739b0..837d8929 100644 --- a/ap_fw/cpu/8051/make.mk +++ b/ap_fw/cpu/8051/make.mk @@ -2,7 +2,7 @@ FLAGS += -Icpu/8051 FLAGS += -mmcs51 --std-sdcc2x --opt-code-size --peep-file cpu/8051/peep.def --fomit-frame-pointer SOURCES += cpu/8051/asmUtil.c -CC = /usr/local/bin/sdcc +CC = sdcc TARGETS = main.ihx main.bin OBJFILEEXT = rel diff --git a/ap_fw/make.bat b/ap_fw/make.bat new file mode 100644 index 00000000..8f656d19 --- /dev/null +++ b/ap_fw/make.bat @@ -0,0 +1,14 @@ +@echo off +makeit clean +makeit +del /s *.asm +del /s *.lst +del /s *.rst +del /s *.sym +del /s *.map +del /s *.mem +del /s *.ihx +del /s *.adb +del /s *.rel +del /s *.omf + diff --git a/ap_fw/makeit.exe b/ap_fw/makeit.exe new file mode 100644 index 00000000..4201fb40 Binary files /dev/null and b/ap_fw/makeit.exe differ diff --git a/esp32_fw/src/main.cpp b/esp32_fw/src/main.cpp index b800454a..efe79a2d 100644 --- a/esp32_fw/src/main.cpp +++ b/esp32_fw/src/main.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include "flasher.h"