forked from tbnobody/OpenDTU
-
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.
add platformio_override.ini as personal config override
Personal edits in platformio.ini causes annoying merge conflicts then new commits are pulled from upstream. Adding an personal override config which is further ignored from git will avoid this. Signed-off-by: Martin Dummer <[email protected]>
- Loading branch information
Showing
4 changed files
with
43 additions
and
8 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
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
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
; *** PlatformIO Project Configuration Override File *** | ||
; *** Changes done here override settings in platformio.ini *** | ||
; | ||
; Place your personal settings like monitor_port and upload_port here | ||
; instead of editing platformio.ini | ||
; to avoid annoying merge conflicts when you pull updates into your | ||
; personal clone of the repository | ||
; | ||
; Please visit documentation for the options and examples | ||
; http://docs.platformio.org/en/stable/projectconf.html | ||
|
||
[env] | ||
; Specify port here. Comment out (add ; in front of line) to use auto detection. | ||
monitor_port = COM4 | ||
upload_port = COM4 | ||
|
||
|
||
; you can define your personal board and/or settings here | ||
; non functional example: | ||
|
||
;[env:my_very_special_board] | ||
;board = esp32dev | ||
;build_flags = ${env.build_flags} | ||
; -DHOYMILES_PIN_MISO=1 | ||
; -DHOYMILES_PIN_MOSI=2 | ||
; -DHOYMILES_PIN_SCLK=3 | ||
; -DHOYMILES_PIN_IRQ=4 | ||
; -DHOYMILES_PIN_CE=5 | ||
; -DHOYMILES_PIN_CS=6 | ||
;monitor_port = /dev/ttyACM0 | ||
;upload_port = /dev/ttyACM0 |