-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1297 from supperthomas/master
[peripheral] add the rtt_esp_idf
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Kconfig file for package rtt_esp_idf | ||
menuconfig PKG_USING_RTT_ESP_IDF | ||
bool "ESP-IDF: for espress serial ESP32C3 etc." | ||
default n | ||
|
||
if PKG_USING_RTT_ESP_IDF | ||
|
||
config PKG_RTT_ESP_IDF_PATH | ||
string | ||
default "/packages/peripherals/rtt_esp_idf" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_RTT_ESP_IDF_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_RTT_ESP_IDF_V100 | ||
bool "v1.0.0" | ||
|
||
config PKG_USING_RTT_ESP_IDF_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_RTT_ESP_IDF_VER | ||
string | ||
default "v1.0.0" if PKG_USING_RTT_ESP_IDF_V100 | ||
default "latest" if PKG_USING_RTT_ESP_IDF_LATEST_VERSION | ||
|
||
endif | ||
|
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,35 @@ | ||
{ | ||
"name": "rtt_esp_idf", | ||
"description": "The ESP-IDF for espress serial ESP32C3 etc.", | ||
"description_zh": "ESP32C3 ESP-IDF软件包。", | ||
"enable": "PKG_USING_RTT_ESP_IDF", | ||
"keywords": [ | ||
"rtt_esp_idf", | ||
"ESP32" | ||
], | ||
"category": "peripherals", | ||
"author": { | ||
"name": "supperthomas", | ||
"email": "[email protected]", | ||
"github": "supperthomas" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/supperthomas/esp-idf", | ||
"icon": "unknown", | ||
"homepage": "https://github.com/supperthomas/esp-idf", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "v1.0.0", | ||
"URL": "https://github.com/supperthomas/esp-idf/archive/refs/tags/rtt_v4.4.zip", | ||
"filename": "rtt_esp_idf_1_0_0.zip", | ||
"VER_SHA": "fill in the git version SHA value" | ||
}, | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/supperthomas/esp-idf.git", | ||
"filename": "esp_idf", | ||
"VER_SHA": "fill in latest version branch name, such as master" | ||
} | ||
] | ||
} |