/* * * Copyright (c) 2020 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. */ /** * @file * This file defines some of the common constants, globals and interfaces * that are common to and used by CHIP example applications. * */ #pragma once #include #include #include #include #include #include #include #define MAX_MESSAGE_SOURCE_STR_LENGTH (100) #define NETWORK_SLEEP_TIME_MSECS (100 * 1000) extern chip::FabricTable gFabricTable; extern chip::Messaging::ExchangeManager gExchangeManager; extern chip::SessionManager gSessionManager; extern chip::secure_channel::MessageCounterManager gMessageCounterManager; extern chip::SessionHolder gSession; extern chip::TestPersistentStorageDelegate gStorage; extern chip::Crypto::DefaultSessionKeystore gSessionKeystore; inline constexpr chip::NodeId kTestNodeId = 0x1ULL; inline constexpr chip::NodeId kTestNodeId1 = 0x2ULL; inline constexpr chip::ClusterId kTestClusterId = 6; inline constexpr chip::CommandId kTestCommandId = 40; inline constexpr chip::EndpointId kTestEndpointId = 1; inline constexpr chip::GroupId kTestGroupId = 0; inline constexpr chip::FieldId kTestFieldId1 = 1; inline constexpr chip::FieldId kTestFieldId2 = 2; inline constexpr uint8_t kTestFieldValue1 = 1; inline constexpr uint8_t kTestFieldValue2 = 2; inline constexpr chip::EventId kTestChangeEvent1 = 1; inline constexpr chip::EventId kTestChangeEvent2 = 2; void InitializeChip(void); void ShutdownChip(void); void TLVPrettyPrinter(const char * aFormat, ...);