-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Fix: Update platformio_override.sample.ini #4617
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -533,6 +533,7 @@ monitor_filters = esp32_exception_decoder | |
# 433MHz RF remote example for esp32dev | ||
[env:esp32dev_usermod_RF433] | ||
extends = env:esp32dev | ||
build_flags = ${env:esp32dev.build_flags} -D USERMOD_RF433 | ||
build_flags = ${env:esp32dev.build_flags} | ||
custom_usermods = usermod_v2_RF433 | ||
lib_deps = ${env:esp32dev.lib_deps} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The entire In this case it's handled here now: https://github.com/wled/WLED/blob/main/usermods/usermod_v2_RF433/library.json So users only need to set |
||
sui77/rc-switch @ 2.6.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually redundant now and would work equally well if deleted. If deleted, it automatically inherits those exact build flags from the
extends
.The
${env:esp32dev.build_flags}
is however vitally important if the user wants to add extra WLED build flags that configure the usermod, so the example should still stay.But maybe change it to this: