Skip to content

Commit

Permalink
no DHCP bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cotestatnt committed Jan 7, 2024
1 parent a58c0a5 commit 69b3636
Show file tree
Hide file tree
Showing 7 changed files with 1,016 additions and 480 deletions.
2 changes: 1 addition & 1 deletion built-in-webpages/setup/all.htm

Large diffs are not rendered by default.

438 changes: 219 additions & 219 deletions built-in-webpages/setup/all.htm.c

Large diffs are not rendered by default.

Binary file modified built-in-webpages/setup/all.htm.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions built-in-webpages/setup/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,9 @@ function saveParameters() {
options = insertKey('ip_address', $('ip').value, options, 2);
options = insertKey('gateway', $('gateway').value, options, 3);
options = insertKey('subnet', $('subnet').value, options, 4);
options["ip_address"] = $('ip').value;
options["gateway"] = $('gateway').value;
options["subnet"] = $('subnet').value;
}

var myblob = new Blob([JSON.stringify(options, null, 2)], {
Expand Down
6 changes: 3 additions & 3 deletions examples/customHTML/.vscode/arduino.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"board": "esp8266:esp8266:d1_mini",
"port": "COM16",
"board": "esp32:esp32:esp32s3",
"port": "COM3",
"sketch": "customHTML.ino",
"configuration": "xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,eesz=4M2M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600"
"configuration": "JTAGAdapter=default,PSRAM=disabled,FlashMode=qio,FlashSize=4M,LoopCore=1,EventsCore=1,USBMode=hwcdc,CDCOnBoot=default,MSCOnBoot=default,DFUOnBoot=default,UploadMode=default,PartitionScheme=default,CPUFreq=240,UploadSpeed=921600,DebugLevel=none,EraseFlash=none"
}
609 changes: 571 additions & 38 deletions examples/customHTML/.vscode/c_cpp_properties.json

Large diffs are not rendered by default.

438 changes: 219 additions & 219 deletions src/setup_htm.h

Large diffs are not rendered by default.

0 comments on commit 69b3636

Please sign in to comment.