Allows us to have custom PlatformIO envs and configs#2234
Merged
liamcottle merged 2 commits intomeshcore-dev:devfrom Apr 4, 2026
Merged
Allows us to have custom PlatformIO envs and configs#2234liamcottle merged 2 commits intomeshcore-dev:devfrom
liamcottle merged 2 commits intomeshcore-dev:devfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds support for a local, untracked PlatformIO override config so developers can define custom envs/settings without modifying tracked configuration.
Changes:
- Include a root-level
platformio_override.inivia PlatformIO’sextra_configs. - Ignore
platformio_override.iniin Git to keep local overrides out of version control.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
platformio.ini |
Loads an optional root override config via extra_configs. |
.gitignore |
Prevents local platformio_override.ini from being committed. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
|
Sounds good to me. Can you please rename this to This will allow it to show underneath |
Author
|
Sure, done. |
vityevato
added a commit
to vityevato/MeshCore
that referenced
this pull request
Apr 5, 2026
* dev: (206 commits) Allows us to have custom PlatformIO envs and configs (meshcore-dev#2234) fix: correct ADVERT_NAME for Generic ESPNow room server (was 'Heltec Room') fix: correct ADVERT_NAME for ThinkNode M5 (was M2) Added RAK12035 Soil Moisture and Temperature Sensor (meshcore-dev#2223) Fixed the initialization error of the BME680 sensor. Apply suggestion from @weebl2000 Apply suggestion from @weebl2000 double press top button to go back on gat562 mesh watch use top button to wake hibernated gat562 mesh watch Make sendNodeDiscoverReq() public for post-boot discovery Add missing methods in ESPNOWRadio() * more notes about number_allocations * number_allocations.md data-type range changes * docs changes for PAYLOAD_TYPE_GRP_DATA Reduce unnecessary compilation time * Companion: applyGPSPrefs() now just in one place (moved out of UITask) fix: apply persisted GPS enabled setting on boot for companion radio Support for GAT562 Mesh Watch13 device restore docs Fix default radio.rxgain for Station G2 ... # Conflicts: # src/helpers/CommonCLI.cpp # src/helpers/CommonCLI.h
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This allows us to keep a
platformio_override.iniin the project root that we can use for custom envs or config without needing to dirty git.