-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(platformio): add environment for esp32-s3-devkitc-1 (#62)
- Loading branch information
Showing
4 changed files
with
38 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,6 @@ | |
|
||
[env] | ||
test_framework = googletest | ||
|
||
[env:native] | ||
platform = native | ||
build_src_filter = src/** | ||
lib_deps = | ||
googletest | ||
|
||
[env:arduino_nano_esp32] | ||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip | ||
board = arduino_nano_esp32 | ||
framework = arduino | ||
test_framework = googletest | ||
build_flags = -std=c++11 | ||
# uncomment the next line if you have error when you upload the firmware (Error 74) | ||
#upload_protocol = esptool | ||
# uncomment the below lines to use over the air update | ||
|
@@ -38,4 +25,23 @@ lib_deps = | |
[email protected] | ||
[email protected] | ||
https://github.com/denyssene/SimpleKalmanFilter.git#v0.2 | ||
[email protected] | ||
[email protected] | ||
|
||
[env:native] | ||
platform = native | ||
build_src_filter = src/** | ||
lib_deps = | ||
googletest | ||
|
||
[env:arduino_nano_esp32] | ||
framework = arduino | ||
build_flags = -std=c++11 | ||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip | ||
board = arduino_nano_esp32 | ||
|
||
[env:esp32-s3-devkitc-1] | ||
framework = arduino | ||
build_flags = -std=c++11 | ||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip | ||
board = esp32-s3-devkitc-1 | ||
board_build.mcu = esp32s3 |
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 |
---|---|---|
|
@@ -10,6 +10,12 @@ | |
|
||
[env] | ||
test_framework = googletest | ||
# uncomment the below lines to use over the air update | ||
# upload_protocol = espota | ||
# upload_port = 192.168.188.62 | ||
lib_deps = | ||
locoduino/[email protected] | ||
256dpi/[email protected] | ||
|
||
[env:native] | ||
platform = native | ||
|
@@ -18,14 +24,15 @@ lib_deps = | |
googletest | ||
|
||
[env:arduino_nano_esp32] | ||
framework = arduino | ||
build_flags = -std=c++11 | ||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip | ||
board = arduino_nano_esp32 | ||
|
||
[env:esp32-s3-devkitc-1] | ||
framework = arduino | ||
test_framework = googletest | ||
build_flags = -std=c++11 | ||
# uncomment the below lines to use over the air update | ||
# upload_protocol = espota | ||
# upload_port = 192.168.188.62 | ||
lib_deps = | ||
locoduino/[email protected] | ||
256dpi/[email protected] | ||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip | ||
board = esp32-s3-devkitc-1 | ||
board_build.mcu = esp32s3 | ||
|