| /* |
| * |
| * Copyright (c) 2021 Project CHIP Authors |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #pragma once |
| |
| namespace chip { |
| namespace Shell { |
| |
| /** |
| * This function registers the BLE commands. |
| * |
| */ |
| void RegisterBLECommands(); |
| |
| /** |
| * This function registers the common commands. |
| * |
| */ |
| void RegisterMetaCommands(); |
| |
| /** |
| * This function registers the device configuration commands. |
| * |
| */ |
| void RegisterConfigCommands(); |
| |
| /** |
| * This function registers the device management commands. |
| * |
| */ |
| void RegisterDeviceCommands(); |
| |
| /** |
| * This function registers the OTA (Over-the-Air) software update commands. |
| * |
| */ |
| void RegisterOtaCommands(); |
| |
| /** |
| * This function registers the resource usage statistics commands. |
| * |
| */ |
| void RegisterStatCommands(); |
| |
| /** |
| * This function registers the device onboarding codes commands. |
| * |
| */ |
| void RegisterOnboardingCodesCommands(); |
| |
| /** |
| * This function registers the wifi commands. |
| * |
| */ |
| void RegisterWiFiCommands(); |
| |
| /** |
| * This function registers the commissioning commands. |
| * |
| */ |
| void RegisterCommissioningCommands(); |
| |
| /** |
| * This function registers the NFC commands. |
| * |
| */ |
| void RegisterNFCCommands(); |
| |
| /** |
| * This function registers the DNS client commands. |
| * |
| */ |
| void RegisterDnsCommands(); |
| |
| } // namespace Shell |
| } // namespace chip |