* added compile option for ethernet #886
* fix ePaper configuration, missing `Busy`-Pin #1075
This commit is contained in:
lumapu 2023-08-08 01:25:55 +02:00
parent 502cf81774
commit 6156145bd6
7 changed files with 30 additions and 22 deletions

View file

@ -79,6 +79,11 @@ def readVersion(path, infile):
dst = path + "firmware/" + versionout
os.rename(src, dst)
versionout = version[:-1] + "_" + sha + "esp32_ethernet.bin"
src = path + ".pio/build/esp32-wroom32-ethernet-release/firmware.bin"
dst = path + "firmware/" + versionout
os.rename(src, dst)
versionout = version[:-1] + "_" + sha + "_esp32s3.bin"
src = path + ".pio/build/opendtufusionv1-release/firmware.bin"
dst = path + "firmware/s3/" + versionout