blob: f7cd0f45541b2b3a548a9e96ade583f18634072f [file] [log] [blame]
/*
*
* Copyright (c) 2017 Nest Labs, Inc.
* All rights reserved.
*
* 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.
*/
#ifndef _NEST_TEST_TRAIT__TEST_F_TRAIT_H_
#define _NEST_TEST_TRAIT__TEST_F_TRAIT_H_
#include <Weave/Profiles/data-management/DataManagement.h>
#include <Weave/Support/SerializationUtils.h>
namespace Schema {
namespace Nest {
namespace Test {
namespace Trait {
namespace TestFTrait {
extern const nl::Weave::Profiles::DataManagement::TraitSchemaEngine TraitSchema;
enum {
kWeaveProfileId = (0x235aU << 16) | 0xfe07U
};
//
// Properties
//
enum {
kPropertyHandle_Root = 1,
//---------------------------------------------------------------------------------------------------------------------------//
// Name IDL Type TLV Type Optional? Nullable? //
//---------------------------------------------------------------------------------------------------------------------------//
//
// tf_p_a float unsigned int <32 bits> YES YES
//
kPropertyHandle_TfPA = 2,
};
//
// Events
//
struct TestFEvent
{
int16_t tfA;
int16_t tfB;
uint16_t tfC;
int16_t tfD;
// Statically-known Event Struct Attributes:
enum {
kWeaveProfileId = (0x235aU << 16) | 0xfe07U,
kEventTypeId = 0x1U
};
static const nl::SchemaFieldDescriptor FieldSchema;
static const nl::Weave::Profiles::DataManagement::EventSchema Schema;
};
} // namespace TestFTrait
}
}
}
}
#endif // _NEST_TEST_TRAIT__TEST_F_TRAIT_H_