61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
|
/**
|
||
|
****************************************************************************************
|
||
|
*
|
||
|
* @file mm_sens.h
|
||
|
*
|
||
|
* @brief Header file for Mesh Sensor Model Definitions
|
||
|
*
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef MM_SENS_H_
|
||
|
#define MM_SENS_H_
|
||
|
|
||
|
/**
|
||
|
****************************************************************************************
|
||
|
* @defgroup MM_DEFINES Mesh Model Definitions
|
||
|
* @ingroup MESH_MDL
|
||
|
* @brief Mesh Model Defines
|
||
|
* @{
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* DEFINES (MODEL IDS)
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/// ************************** Model IDs for Sensors Models *****************************
|
||
|
|
||
|
/// Sensors Server - Sensor
|
||
|
#define MM_ID_SENS_SEN (0x1100)
|
||
|
/// Sensors Server - Sensor Setup
|
||
|
#define MM_ID_SENS_SENS (0x1101)
|
||
|
|
||
|
/// Sensors Client - Sensor
|
||
|
#define MM_ID_SENC_SEN (0x1102)
|
||
|
|
||
|
/*
|
||
|
* DEFINES
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* DEFINES (MESSAGE LENGTH)
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* ENUMERATIONS (MESSAGE CONTENT)
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* ENUMERATIONS
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/// @} MM_DEFINES
|
||
|
|
||
|
#endif /* MM_SENS_H_ */
|