0ccadb246f
* added wireguard VPN usermod * add example PIO override & edit readme * add contact information and improve usermod performance
22 lines
877 B
INI
22 lines
877 B
INI
# Example PlatformIO Project Configuration Override for WireGuard
|
|
# ------------------------------------------------------------------------------
|
|
# Copy to platformio_override.ini to activate.
|
|
# ------------------------------------------------------------------------------
|
|
# Please visit documentation: https://docs.platformio.org/page/projectconf.html
|
|
|
|
[platformio]
|
|
default_envs = WLED_ESP32-WireGuard
|
|
|
|
[env:WLED_ESP32-WireGuard]
|
|
board = esp32dev
|
|
platform = ${esp32.platform}
|
|
platform_packages = ${esp32.platform_packages}
|
|
build_unflags = ${common.build_unflags}
|
|
build_flags = ${common.build_flags_esp32}
|
|
-D WLED_RELEASE_NAME=ESP32-WireGuard
|
|
-D USERMOD_WIREGUARD
|
|
lib_deps = ${esp32.lib_deps}
|
|
https://github.com/kienvu58/WireGuard-ESP32-Arduino.git
|
|
monitor_filters = esp32_exception_decoder
|
|
board_build.partitions = ${esp32.default_partitions}
|
|
upload_speed = 921600 |