Skip to content
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

[TE1]: Provide test interface in chip-shell to test CRMP. #5228

Merged
merged 3 commits into from
Mar 11, 2021
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
2 changes: 2 additions & 0 deletions examples/shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Done
- [exit](#exit)
- [help](#help)
- [otcli](README_OTCLI.md)
- [ping](#ping)
- [rand](#rand)
- [version](#version)

Expand All @@ -51,6 +52,7 @@ Display a list of all top-level commands supported and a brief description.
base64 Base64 encode / decode utilities
device Device Layer commands
otcli Dispatch OpenThread CLI command
ping Using Echo Protocol to measure packet loss across network paths
exit Exit the shell application
help List out all top level commands
version Output the software version
Expand Down
2 changes: 2 additions & 0 deletions examples/shell/nrfconnect/CHIPProjectConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@

// Enable support functions for parsing command-line arguments
#define CHIP_CONFIG_ENABLE_ARG_PARSER 1

#define CHIP_DEVICE_CONFIG_DISABLE_SHELL_PING 1
6 changes: 6 additions & 0 deletions examples/shell/shell_common/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,18 @@ static_library("shell_common") {
"cmd_device.cpp",
"cmd_misc.cpp",
"cmd_otcli.cpp",
"cmd_ping.cpp",
]

public_deps = [
"${chip_root}/src/lib",
"${chip_root}/src/lib/core",
"${chip_root}/src/lib/shell",
"${chip_root}/src/lib/support",
"${chip_root}/src/platform",
"${chip_root}/src/protocols",
"${chip_root}/src/setup_payload",
"${chip_root}/src/system",
]

if (chip_enable_openthread &&
Expand Down
Loading