forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated platformio.ini to reference esp32_eth env
change default ethernet type to none add macro option to change default eth board at compile time
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
# ------------------------------------------------------------------------------ | ||
|
||
# Travis CI binaries (comment this out with a ';' when building for your own board) | ||
; default_envs = travis_esp8266, travis_esp32 | ||
default_envs = travis_esp8266, travis_esp32 | ||
|
||
# Release binaries | ||
; default_envs = nodemcuv2, esp01_1m_full, esp32dev, custom_WS2801, custom_APA102, custom_LEDPIN_16, custom_LEDPIN_4, custom_LEDPIN_3, custom32_LEDPIN_16, custom32_APA102 | ||
|
@@ -30,7 +30,7 @@ | |
; default_envs = d1_mini_5CH_Shojo_PCB | ||
; default_envs = wemos_shield_esp32 | ||
; default_envs = m5atom | ||
default_envs = esp32_poe | ||
; default_envs = esp32_eth | ||
|
||
src_dir = ./wled00 | ||
data_dir = ./wled00/data | ||
|
@@ -279,12 +279,12 @@ lib_ignore = | |
ESPAsyncTCP | ||
ESPAsyncUDP | ||
|
||
[env:esp32_poe] | ||
[env:esp32_eth] | ||
board = esp32-poe | ||
platform = [email protected] | ||
upload_speed = 921600 | ||
build_unflags = ${common.build_unflags} | ||
build_flags = ${common.build_flags_esp32} -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1 | ||
build_flags = ${common.build_flags_esp32} -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1 | ||
lib_ignore = | ||
ESPAsyncTCP | ||
ESPAsyncUDP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters