Skip to content

Add the new target for Olimex POE with wrover module #2952

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

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ We also have a [Community Targets](https://github.com/nanoframework/nf-Community
|:---|---|---|
| ESP32_ETHERNET_KIT_1.2 | Poe, Wrover + 8mb psram| [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_ETHERNET_KIT_1.2/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_ETHERNET_KIT_1.2/latest/) |
| ESP32_OLIMEX | Poe | [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_OLIMEX/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_OLIMEX/latest/) |
| ESP32_OLIMEX_WROVER | Poe, Wrover + 8mb psram | [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_OLIMEX_WROVER/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_OLIMEX_WROVER/latest/) |
| ESP32_WT32_ETH01 | | [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_WT32_ETH01/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_WT32_ETH01/latest/) |
| ESP32_WESP32 | Poe | [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_WESP32/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_WESP32/latest/) |
| ESP32_LILYGO | Poe | [![Latest Version @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/net-nanoframework/nanoframework-images/raw/ESP32_LILYGO/latest/x/?render=true)](https://cloudsmith.io/~net-nanoframework/repos/nanoframework-images/packages/detail/raw/ESP32_LILYGO/latest/) |
Expand Down
9 changes: 9 additions & 0 deletions azure-pipelines-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,15 @@ jobs:
PackageName: ESP32_OLIMEX
CMakePreset: ESP32_OLIMEX

ESP32_OLIMEX:
TargetBoard: ESP32
TargetSeries: 'esp32'
BuildOptions:
IDF_Target: esp32
TargetName: ESP32_OLIMEX_WROVER
PackageName: ESP32_OLIMEX_WROVER
CMakePreset: ESP32_OLIMEX_WROVER

M5StickC:
TargetBoard: ESP32
TargetPlatform: 'esp32'
Expand Down
29 changes: 29 additions & 0 deletions targets/ESP32/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,29 @@
"API_System.Device.I2c.Slave": "OFF"
}
},
{
"name": "ESP32_OLIMEX_WROVER",
"inherits": [
"xtensa-esp32-preset",
"user-tools-repos",
"user-prefs"
],
"hidden": false,
"cacheVariables": {
"TARGET_NAME": "${presetName}",
"SDK_CONFIG_FILE": "sdkconfig.default_ble_rev3.esp32",
"NF_BUILD_RTM": "OFF",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_FEATURE_HAS_SDCARD": "ON",
"API_System.IO.FileSystem": "ON",
"API_nanoFramework.Device.OneWire": "ON",
"API_System.Device.I2c.Slave": "ON",
"ESP32_ETHERNET_SUPPORT": "ON",
"ETH_PHY_RST_GPIO": "12",
"ETH_RMII_CLK_OUT_GPIO": "0"
}
},
{
"name": "LilygoTWatch2020",
"inherits": [
Expand Down Expand Up @@ -1003,6 +1026,12 @@
"displayName": "ESP32_OLIMEX",
"configurePreset": "ESP32_OLIMEX"
},
{
"inherits": "base-user",
"name": "ESP32_OLIMEX_WROVER",
"displayName": "ESP32_OLIMEX_WROVER",
"configurePreset": "ESP32_OLIMEX_WROVER"
},
{
"inherits": "base-user",
"name": "ESP32_ETHERNET_KIT_1.2",
Expand Down