Skip to content

Commit ac29a75

Browse files
committed
[shell] Remove base64 commands
Base64 encoding/decoding is not specific to Matter so base64 shell commands are not useful on actual Matter devices.
1 parent 124b59d commit ac29a75

File tree

4 files changed

+0
-121
lines changed

4 files changed

+0
-121
lines changed

src/lib/shell/Commands.h

-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@
2020
namespace chip {
2121
namespace Shell {
2222

23-
/**
24-
* This function registers the base64 encode/decode commands.
25-
*
26-
*/
27-
void RegisterBase64Commands();
28-
2923
/**
3024
* This function registers the BLE commands.
3125
*

src/lib/shell/Engine.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ CHIP_ERROR Engine::ExecCommand(int argc, char * argv[])
105105

106106
void Engine::RegisterDefaultCommands()
107107
{
108-
RegisterBase64Commands();
109108
RegisterMetaCommands();
110109
#if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
111110
RegisterBLECommands();

src/lib/shell/commands/BUILD.gn

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import("${chip_root}/src/system/system.gni")
2020

2121
source_set("commands") {
2222
sources = [
23-
"Base64.cpp",
2423
"Help.cpp",
2524
"Help.h",
2625
"Meta.cpp",

src/lib/shell/commands/Base64.cpp

-113
This file was deleted.

0 commit comments

Comments
 (0)