Merge pull request #2 from nlimper/small-fixes

small fixes
This commit is contained in:
Jelmer
2023-01-28 01:24:46 +01:00
committed by GitHub
4 changed files with 16 additions and 2 deletions

View File

@@ -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

14
ap_fw/make.bat Normal file
View File

@@ -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

BIN
ap_fw/makeit.exe Normal file

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#include <Arduino.h>
#include <WiFi.h>
#include <WifiManager.h>
#include <WiFiManager.h>
#include <time.h>
#include "flasher.h"