Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow wifi password len > 32 #88

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ lib_deps =
extra_scripts =
pre:auto_firmware_version.py
monitor_filters = esp32_exception_decoder
build_flags =
-DIOTWEBCONF_CONFIG_DONT_USE_MDNS=1
-DIOTWEBCONF_PASSWORD_LEN=64

[env:esp12e]
platform = espressif8266
board = esp12e
monitor_speed = 2400
upload_speed = 921600
build_flags =
${env.build_flags}
-DRESET_PIN=5
-DTX_DISABLE_PIN=5
-DBusSer=Serial
-DDebugSer=Serial1
-DIOTWEBCONF_CONFIG_DONT_USE_MDNS=1

lib_deps =
${env.lib_deps}
Expand All @@ -41,11 +44,11 @@ upload_protocol = espota
[env:esp12e-v3]
extends = env:esp12e
build_flags =
${env.build_flags}
-DRESET_PIN=5
-DTX_DISABLE_PIN=2
-DBusSer=Serial
-DDebugSer=Serial1
-DIOTWEBCONF_CONFIG_DONT_USE_MDNS=1

[env:esp12e-v3-ota]
extends = env:esp12e-v3
Expand All @@ -56,14 +59,14 @@ upload_protocol = espota
platform = [email protected]
board = esp32-c3-devkitm-1
build_flags =
${env.build_flags}
-DRESET_PIN=20
-DPWM_PIN=6
-DARDUINO_USB_MODE=1
-DARDUINO_USB_CDC_ON_BOOT=1
-DBusSer=Serial1
-DDebugSer=Serial
-DSTATUS_LED_PIN=3
-DIOTWEBCONF_CONFIG_DONT_USE_MDNS=1

monitor_filters = esp32_exception_decoder

Expand Down
Loading