You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shell's examples/shell/shell_common/cmd_ping.cpp and examples/shell/shell_common/cmd_send.cpp were doing non-Matter low-level communication used early in bring-up, but pretending to use modern APIs, as the code was "kept building" the whole time.
These commands need to be removed outright.
Proposed Solution
Remove obsolete commnads in Shell
The text was updated successfully, but these errors were encountered:
- Both cmd_send and cmd_ping used pre-spec internal test-level
APIs which have grown stale and no longer function. They showed API
usage that was both incorrect and dangerous. They are were also
no longer used.
Fixesproject-chip#19889Fixesproject-chip#6293
This PR removes these stale commands, which already had become
empty in a prior PR since the way they used FabricTable was
also incorrect (and this had been corrected at the time).
Testing done:
- Unit tests still pass
- Integration tests still pass
* Remove shell cmd_ping/cmd_send that were obsolete
- Both cmd_send and cmd_ping used pre-spec internal test-level
APIs which have grown stale and no longer function. They showed API
usage that was both incorrect and dangerous. They are were also
no longer used.
Fixes#19889Fixes#6293
This PR removes these stale commands, which already had become
empty in a prior PR since the way they used FabricTable was
also incorrect (and this had been corrected at the time).
Testing done:
- Unit tests still pass
- Integration tests still pass
* Remove more unused commands
Problem
Shell's
examples/shell/shell_common/cmd_ping.cpp
andexamples/shell/shell_common/cmd_send.cpp
were doing non-Matter low-level communication used early in bring-up, but pretending to use modern APIs, as the code was "kept building" the whole time.These commands need to be removed outright.
Proposed Solution
The text was updated successfully, but these errors were encountered: