-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/add_ieee802154_examples' into 'master'
feat(ieee802154): Add ieee802154 examples See merge request espressif/esp-idf!26423
- Loading branch information
Showing
20 changed files
with
555 additions
and
124 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
components/ieee802154/test_apps/test_ieee802154/sdkconfig.defaults
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps | ||
|
||
.ieee802154_dependencies: &ieee802154_dependencies | ||
depends_components: | ||
- esp_coex | ||
- esp_phy | ||
- ieee802154 | ||
depends_filepatterns: | ||
- examples/ieee802154/**/* | ||
- examples/system/console/advanced/components/cmd_system/**/* | ||
|
||
examples/ieee802154/ieee802154_cli: | ||
enable: | ||
- if: SOC_IEEE802154_SUPPORTED == 1 | ||
disable_test: | ||
- if: IDF_TARGET == "esp32h2" | ||
temporary: true | ||
reason: only test on esp32c6 | ||
<<: *ieee802154_dependencies |
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,9 @@ | ||
# IEEE802.15.4 Examples | ||
|
||
See the [README.md](../README.md) file in the upper level [examples](../) directory for more information about examples. | ||
|
||
## Overview | ||
|
||
In this folder, it contains following IEEE802.15.4 examples: | ||
|
||
* [ieee802154_cli](ieee802154_cli) is an IEEE802.15.4 Command Line example, the commands it supports are listed in [README.md](./ieee802154_cli//README.md). It runs on an 802.15.4 SoC like ESP32-H2. |
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
Oops, something went wrong.