Generic communication interface between the wireless board (mote) and the sensor board. Any kind of sensor board can be connected to the mote using this specification given it provides a SPI peripheral, one input pin with interrupt capability and one digital output. The sensor board must implement a special register set from which all required information can be retrieved. Protocol: http://is.gd/wuQorh Github: http://is.gd/ySj1L9

Dependencies:   mbed-src

Revision:
1:acdf490d94a7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sens_itf/sens_itf.h	Tue Apr 08 16:34:20 2014 +0000
@@ -0,0 +1,403 @@
+/** @file */
+
+#ifndef __SENS_ITF_H__
+#define __SENS_ITF_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define SENS_ITF_LATEST_VERSION     0
+#define SENS_ITF_MAX_FRAME_SIZE   128
+#define SENS_ITF_DSP_MSG_MAX_SIZE  24
+#define SENS_ITF_MAX_POINTS        32
+#define SENS_ITF_SERVER_ADDR_SIZE  16
+#define SENS_ITF_MODEL_NAME_SIZE    8
+#define SENS_ITF_MANUF_NAME_SIZE    8
+#define SENS_ITF_POINT_NAME_SIZE    8
+
+/** Sensor interface standard datatypes */
+enum sens_itf_datatypes_e
+{
+	SENS_ITF_DT_U8     = 0x00, /**< 8 bits unsigned */
+	SENS_ITF_DT_S8     = 0x01, /**< 8 bits signed */
+	SENS_ITF_DT_U16    = 0x02, /**< 16 bits unsigned */
+	SENS_ITF_DT_S16    = 0x03, /**< 16 bits signed */
+	SENS_ITF_DT_U32    = 0x04, /**< 32 bits unsigned */
+	SENS_ITF_DT_S32    = 0x05, /**< 32 bits signed */
+	SENS_ITF_DT_U64    = 0x06, /**< 64 bits unsigned */
+	SENS_ITF_DT_S64    = 0x07, /**< 64 bits signed */
+	SENS_ITF_DT_FLOAT  = 0x08, /**< IEEE 754 single precision */
+	SENS_ITF_DT_DOUBLE = 0x09, /**< IEEE 754 double precision */
+};
+
+/** Sensor interface register map */
+enum sens_itf_register_map_e 
+{
+	SENS_ITF_REGMAP_ITF_VERSION      = 0x00, /**< Sensor Board Interface Version */
+	SENS_ITF_REGMAP_BRD_ID           = 0x01, /**< Sensor Board Identification */
+	SENS_ITF_REGMAP_BRD_STATUS       = 0x02, /**< Sensor Board Status */
+	SENS_ITF_REGMAP_BRD_CMD          = 0x03, /**< Sensor Board Command */
+	SENS_ITF_REGMAP_READ_BAT_STATUS  = 0x04, /**< Read battery status */
+    SENS_ITF_REGMAP_WRITE_BAT_STATUS = 0x05, /**< Write battery status */
+	SENS_ITF_REGMAP_READ_BAT_CHARGE  = 0x06, /**< Read battery charge(0 - 100 % ) */
+    SENS_ITF_REGMAP_WRITE_BAT_CHARGE = 0x07, /**< Write Battery charge(0 - 100 % ) */
+	SENS_ITF_REGMAP_WPAN_STATUS      = 0x08, /**< Wireless network status */
+	SENS_ITF_REGMAP_WPAN_STRENGTH    = 0x09, /**< Wireless network strength(RSSI, 0 to 100 % ) */
+	SENS_ITF_REGMAP_DSP_WRITE        = 0x0A, /**< Write display (when display is available) */
+	SENS_ITF_REGMAP_SVR_MAIN_ADDR    = 0x0B, /**< Main server address(IPv6) */
+	SENS_ITF_REGMAP_SVR_SEC_ADDR     = 0x0C, /**< Secondary server address(IPv6) */
+
+	/*0x0D to 0x0F - Reserved(Should not be answered) */
+
+	SENS_ITF_REGMAP_POINT_DESC_1  = 0x10, /**< Sensor Point Description 1 */
+	SENS_ITF_REGMAP_POINT_DESC_2  = 0x11, /**< Sensor Point Description 2 */
+	SENS_ITF_REGMAP_POINT_DESC_3  = 0x12, /**< Sensor Point Description 3 */
+	SENS_ITF_REGMAP_POINT_DESC_4  = 0x13, /**< Sensor Point Description 4 */
+	SENS_ITF_REGMAP_POINT_DESC_5  = 0x14, /**< Sensor Point Description 5 */
+	SENS_ITF_REGMAP_POINT_DESC_6  = 0x15, /**< Sensor Point Description 6 */
+	SENS_ITF_REGMAP_POINT_DESC_7  = 0x16, /**< Sensor Point Description 7 */
+	SENS_ITF_REGMAP_POINT_DESC_8  = 0x17, /**< Sensor Point Description 8 */
+	SENS_ITF_REGMAP_POINT_DESC_9  = 0x18, /**< Sensor Point Description 9 */
+	SENS_ITF_REGMAP_POINT_DESC_10 = 0x19, /**< Sensor Point Description 10 */
+	SENS_ITF_REGMAP_POINT_DESC_11 = 0x1A, /**< Sensor Point Description 11 */
+	SENS_ITF_REGMAP_POINT_DESC_12 = 0x1B, /**< Sensor Point Description 12 */
+	SENS_ITF_REGMAP_POINT_DESC_13 = 0x1C, /**< Sensor Point Description 13 */
+	SENS_ITF_REGMAP_POINT_DESC_14 = 0x1D, /**< Sensor Point Description 14 */
+	SENS_ITF_REGMAP_POINT_DESC_15 = 0x1E, /**< Sensor Point Description 15 */
+	SENS_ITF_REGMAP_POINT_DESC_16 = 0x1F, /**< Sensor Point Description 16 */
+	SENS_ITF_REGMAP_POINT_DESC_17 = 0x20, /**< Sensor Point Description 17 */
+	SENS_ITF_REGMAP_POINT_DESC_18 = 0x21, /**< Sensor Point Description 18 */
+	SENS_ITF_REGMAP_POINT_DESC_19 = 0x22, /**< Sensor Point Description 19 */
+	SENS_ITF_REGMAP_POINT_DESC_20 = 0x23, /**< Sensor Point Description 20 */
+	SENS_ITF_REGMAP_POINT_DESC_21 = 0x24, /**< Sensor Point Description 21 */
+	SENS_ITF_REGMAP_POINT_DESC_22 = 0x25, /**< Sensor Point Description 22 */
+	SENS_ITF_REGMAP_POINT_DESC_23 = 0x26, /**< Sensor Point Description 23 */
+	SENS_ITF_REGMAP_POINT_DESC_24 = 0x27, /**< Sensor Point Description 24 */
+	SENS_ITF_REGMAP_POINT_DESC_25 = 0x28, /**< Sensor Point Description 25 */
+	SENS_ITF_REGMAP_POINT_DESC_26 = 0x29, /**< Sensor Point Description 26 */
+	SENS_ITF_REGMAP_POINT_DESC_27 = 0x2A, /**< Sensor Point Description 27 */
+	SENS_ITF_REGMAP_POINT_DESC_28 = 0x2B, /**< Sensor Point Description 28 */
+	SENS_ITF_REGMAP_POINT_DESC_29 = 0x2C, /**< Sensor Point Description 29 */
+	SENS_ITF_REGMAP_POINT_DESC_30 = 0x2D, /**< Sensor Point Description 30 */
+	SENS_ITF_REGMAP_POINT_DESC_31 = 0x2E, /**< Sensor Point Description 31 */
+	SENS_ITF_REGMAP_POINT_DESC_32 = 0x2F, /**< Sensor Point Description 32 */
+
+	SENS_ITF_REGMAP_READ_POINT_DATA_1 = 0x30, /**< Read Sensor Point Data 1 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_2 = 0x31, /**< Read Sensor Point Data 2 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_3 = 0x32, /**< Read Sensor Point Data 3 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_4 = 0x33, /**< Read Sensor Point Data 4 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_5 = 0x34, /**< Read Sensor Point Data 5 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_6 = 0x35, /**< Read Sensor Point Data 6 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_7 = 0x36, /**< Read Sensor Point Data 7 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_8 = 0x37, /**< Read Sensor Point Data 8 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_9 = 0x38, /**< Read Sensor Point Data 9 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_10 = 0x39, /**< Read Sensor Point Data 10 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_11 = 0x3A, /**< Read Sensor Point Data 11 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_12 = 0x3B, /**< Read Sensor Point Data 12 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_13 = 0x3C, /**< Read Sensor Point Data 13 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_14 = 0x3D, /**< Read Sensor Point Data 14 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_15 = 0x3E, /**< Read Sensor Point Data 15 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_16 = 0x3F, /**< Read Sensor Point Data 16 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_17 = 0x40, /**< Read Sensor Point Data 17 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_18 = 0x41, /**< Read Sensor Point Data 18 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_19 = 0x42, /**< Read Sensor Point Data 19 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_20 = 0x43, /**< Read Sensor Point Data 20 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_21 = 0x44, /**< Read Sensor Point Data 21 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_22 = 0x45, /**< Read Sensor Point Data 22 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_23 = 0x46, /**< Read Sensor Point Data 23 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_24 = 0x47, /**< Read Sensor Point Data 24 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_25 = 0x48, /**< Read Sensor Point Data 25 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_26 = 0x49, /**< Read Sensor Point Data 26 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_27 = 0x4A, /**< Read Sensor Point Data 27 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_28 = 0x4B, /**< Read Sensor Point Data 28 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_29 = 0x4C, /**< Read Sensor Point Data 29 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_30 = 0x4D, /**< Read Sensor Point Data 30 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_31 = 0x4E, /**< Read Sensor Point Data 31 */
+	SENS_ITF_REGMAP_READ_POINT_DATA_32 = 0x4F, /**< Read Sensor Point Data 32 */
+
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_1 = 0x50, /**< Write Sensor Point Data 1 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_2 = 0x51, /**< Write Sensor Point Data 2 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_3 = 0x52, /**< Write Sensor Point Data 3 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_4 = 0x53, /**< Write Sensor Point Data 4 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_5 = 0x54, /**< Write Sensor Point Data 5 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_6 = 0x55, /**< Write Sensor Point Data 6 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_7 = 0x56, /**< Write Sensor Point Data 7 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_8 = 0x57, /**< Write Sensor Point Data 8 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_9 = 0x58, /**< Write Sensor Point Data 9 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_10 = 0x59, /**< Write Sensor Point Data 10 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_11 = 0x5A, /**< Write Sensor Point Data 11 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_12 = 0x5B, /**< Write Sensor Point Data 12 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_13 = 0x5C, /**< Write Sensor Point Data 13 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_14 = 0x5D, /**< Write Sensor Point Data 14 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_15 = 0x5E, /**< Write Sensor Point Data 15 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_16 = 0x5F, /**< Write Sensor Point Data 16 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_17 = 0x60, /**< Write Sensor Point Data 17 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_18 = 0x61, /**< Write Sensor Point Data 18 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_19 = 0x62, /**< Write Sensor Point Data 19 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_20 = 0x63, /**< Write Sensor Point Data 20 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_21 = 0x64, /**< Write Sensor Point Data 21 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_22 = 0x65, /**< Write Sensor Point Data 22 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_23 = 0x66, /**< Write Sensor Point Data 23 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_24 = 0x67, /**< Write Sensor Point Data 24 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_25 = 0x68, /**< Write Sensor Point Data 25 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_26 = 0x69, /**< Write Sensor Point Data 26 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_27 = 0x6A, /**< Write Sensor Point Data 27 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_28 = 0x6B, /**< Write Sensor Point Data 28 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_29 = 0x6C, /**< Write Sensor Point Data 29 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_30 = 0x6D, /**< Write Sensor Point Data 30 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_31 = 0x6E, /**< Write Sensor Point Data 31 */
+	SENS_ITF_REGMAP_WRITE_POINT_DATA_32 = 0x6F, /**< Write Sensor Point Data 32 */
+
+	/* 0x70 to 0xFF - Reserved */
+};
+
+enum sens_itf_sensor_status_e
+{
+	SENS_ITF_SENSOR_STATUS_OK = 0,
+	SENS_ITF_SENSOR_STATUS_POINT_1 = 1,
+	SENS_ITF_SENSOR_STATUS_POINT_2 = 2,
+	SENS_ITF_SENSOR_STATUS_POINT_3 = 3,
+	SENS_ITF_SENSOR_STATUS_POINT_4 = 4,
+	SENS_ITF_SENSOR_STATUS_POINT_5 = 5,
+	SENS_ITF_SENSOR_STATUS_POINT_6 = 6,
+	SENS_ITF_SENSOR_STATUS_POINT_7 = 7,
+	SENS_ITF_SENSOR_STATUS_POINT_8 = 8,
+	SENS_ITF_SENSOR_STATUS_POINT_9 = 9,
+	SENS_ITF_SENSOR_STATUS_POINT_10 = 10,
+	SENS_ITF_SENSOR_STATUS_POINT_11 = 11,
+	SENS_ITF_SENSOR_STATUS_POINT_12 = 12,
+	SENS_ITF_SENSOR_STATUS_POINT_13 = 13,
+	SENS_ITF_SENSOR_STATUS_POINT_14 = 14,
+	SENS_ITF_SENSOR_STATUS_POINT_15 = 15,
+	SENS_ITF_SENSOR_STATUS_POINT_16 = 16,
+	SENS_ITF_SENSOR_STATUS_POINT_17 = 17,
+	SENS_ITF_SENSOR_STATUS_POINT_18 = 18,
+	SENS_ITF_SENSOR_STATUS_POINT_19 = 19,
+	SENS_ITF_SENSOR_STATUS_POINT_20 = 20,
+	SENS_ITF_SENSOR_STATUS_POINT_21 = 21,
+	SENS_ITF_SENSOR_STATUS_POINT_22 = 22,
+	SENS_ITF_SENSOR_STATUS_POINT_23 = 23,
+	SENS_ITF_SENSOR_STATUS_POINT_24 = 24,
+	SENS_ITF_SENSOR_STATUS_POINT_25 = 25,
+	SENS_ITF_SENSOR_STATUS_POINT_26 = 26,
+	SENS_ITF_SENSOR_STATUS_POINT_27 = 27,
+	SENS_ITF_SENSOR_STATUS_POINT_28 = 28,
+	SENS_ITF_SENSOR_STATUS_POINT_29 = 29,
+	SENS_ITF_SENSOR_STATUS_POINT_30 = 30,
+	SENS_ITF_SENSOR_STATUS_POINT_31 = 31,
+	SENS_ITF_SENSOR_STATUS_POINT_32 = 32,
+	/* 33 to 127 - reserved */
+	SENS_ITF_SENSOR_STATUS_GENERAL_SENSOR_FAILURE = 128,
+	/* 129 to 255 - reserved */
+};
+
+enum sens_itf_sensor_cmds_e
+{
+	SENS_ITF_SENSOR_CMD_RESET = 0,
+};
+
+enum sens_itf_ans_status_e
+{
+	SENS_ITF_ANS_OK = 0,
+	SENS_ITF_ANS_ERROR = 1,
+    SENS_ITF_ANS_CRC_ERROR = 2,
+	SENS_ITF_ANS_READY_ONLY = 3,
+	SENS_ITF_ANS_WRITE_ONLY = 4,
+    SENS_ITF_ANS_REGISTER_NOT_IMPLEMENTED = 5,
+};
+
+enum sens_itf_access_rights_e
+{
+	SENS_ITF_ACCESS_READ_ONLY = 0x01,
+	SENS_ITF_ACCESS_WRITE_ONLY = 0x02,
+	SENS_ITF_ACCESS_READ_WRITE = 0x03,
+};
+
+enum sens_itf_sensor_capabilities_e
+{
+	SENS_ITF_CAPABILITIES_BATTERY = 0x01,
+	SENS_ITF_CAPABILITIES_DISPLAY = 0x02,
+	SENS_ITF_CAPABILITIES_WPAN_STATUS = 0x04,
+	SENS_ITF_CAPABILITIES_BATTERY_STATUS = 0x08,
+};
+
+enum sens_itf_bat_status_e
+{
+	SENS_ITF_BAT_STATUS_CHARGED = 0x00,
+	SENS_ITF_BAT_STATUS_CHARGING = 0x01,
+	SENS_ITF_BAT_STATUS_DISCHARGING = 0x02,
+	SENS_ITF_BAT_STATUS_FAILURE = 0x03,
+};
+
+enum sens_itf_wpan_status_e
+{
+	SENS_ITF_WPAN_STATUS_CONNECTED = 0x00,
+	SENS_ITF_WPAN_STATUS_DISCONNECTED = 0x01,
+	SENS_ITF_WPAN_STATUS_CONNECTING = 0x02,
+};
+
+union sens_itf_point_data_u
+{
+	uint8_t  u8;
+	int8_t   s8;
+	uint16_t u16;
+	int16_t  s16;
+	uint32_t u32;
+	int32_t  s32;
+	uint64_t u64;
+	int64_t  s64;
+	float    fp32;
+	double   fp64;
+};
+
+typedef struct sens_itf_cmd_bat_status_s
+{
+	uint8_t status;
+} sens_itf_cmd_bat_status_t;
+
+typedef struct sens_itf_cmd_bat_charge_s
+{
+	uint8_t charge;
+} sens_itf_cmd_bat_charge_t;
+
+typedef struct sens_itf_cmd_command_s
+{
+	uint8_t cmd;
+} sens_itf_cmd_command_t;
+
+typedef struct sens_itf_cmd_command_res_s
+{
+	uint8_t status;
+} sens_itf_cmd_command_res_t;
+
+typedef struct sens_itf_cmd_wpan_status_s
+{
+	uint8_t status;
+} sens_itf_cmd_wpan_status_t;
+
+typedef struct sens_itf_cmd_wpan_strenght_s
+{
+	uint8_t strenght;
+} sens_itf_cmd_wpan_strenght_t;
+
+typedef struct sens_itf_cmd_write_display_s
+{
+	uint8_t line;
+	uint8_t msg[SENS_ITF_DSP_MSG_MAX_SIZE];
+} sens_itf_cmd_write_display_t;
+
+typedef struct sens_itf_cmd_svr_addr_s
+{
+	uint8_t addr[SENS_ITF_SERVER_ADDR_SIZE];
+} sens_itf_cmd_svr_addr_t;
+
+typedef struct sens_itf_cmd_itf_version_s
+{
+	uint8_t version;
+} sens_itf_cmd_itf_version_t;
+
+typedef struct sens_itf_cmd_brd_id_s
+{
+	uint8_t model[SENS_ITF_MODEL_NAME_SIZE];
+	uint8_t manufactor[SENS_ITF_MANUF_NAME_SIZE];
+	uint32_t sensor_id;
+	uint8_t hardware_revision;
+	uint8_t num_of_points;
+	uint8_t cabalities;
+} sens_itf_cmd_brd_id_t;
+
+typedef struct sens_itf_cmd_brd_status_s
+{
+	uint8_t status;
+} sens_itf_cmd_brd_status_t;
+
+typedef struct sens_itf_cmd_point_desc_s
+{
+	uint8_t name[SENS_ITF_POINT_NAME_SIZE];
+	uint8_t type;
+	uint8_t unit;
+	uint8_t access_rights;
+	uint32_t sampling_time_x250ms;
+} sens_itf_cmd_point_desc_t;
+
+typedef struct sens_itf_cmd_point_s
+{
+	union sens_itf_point_data_u value;
+    uint8_t type;
+} sens_itf_cmd_point_t;
+
+typedef struct sens_itf_point_ctrl_s
+{
+	uint8_t num_of_points;
+	struct {
+		sens_itf_cmd_point_desc_t desc;
+		sens_itf_cmd_point_t value;
+	} points[SENS_ITF_MAX_POINTS];
+} sens_itf_point_ctrl_t;
+
+union sens_itf_cmds_u
+{
+	sens_itf_cmd_bat_status_t bat_status_cmd;
+	sens_itf_cmd_bat_charge_t bat_charge_cmd;
+    sens_itf_cmd_command_t command_cmd;
+    sens_itf_cmd_command_res_t command_res_cmd;
+	sens_itf_cmd_wpan_status_t wpan_status_cmd;
+	sens_itf_cmd_wpan_strenght_t wpan_strength_cmd;
+	sens_itf_cmd_write_display_t write_display_cmd;
+	sens_itf_cmd_svr_addr_t svr_addr_cmd;
+	sens_itf_cmd_itf_version_t itf_version_cmd;
+	sens_itf_cmd_brd_id_t brd_id_cmd;
+	sens_itf_cmd_brd_status_t brd_status_cmd;
+	sens_itf_cmd_point_desc_t point_desc_cmd;
+	sens_itf_cmd_point_t point_value_cmd;
+};
+
+typedef struct sens_itf_cmd_req_hdr_s
+{
+	uint8_t size;
+	uint8_t addr;
+} sens_itf_cmd_req_hdr_t;
+
+typedef struct sens_itf_cmd_res_hdr_s
+{
+	uint8_t size;
+	uint8_t status;
+    uint8_t addr;
+} sens_itf_cmd_res_hdr_t;
+
+typedef struct sens_itf_cmd_req_s
+{
+	sens_itf_cmd_req_hdr_t hdr;
+	union sens_itf_cmds_u payload;
+	uint16_t crc;
+} sens_itf_cmd_req_t;
+
+typedef struct sens_itf_cmd_res_s
+{
+	sens_itf_cmd_res_hdr_t hdr;
+	union sens_itf_cmds_u payload;
+	uint16_t crc;
+} sens_itf_cmd_res_t;
+
+
+//extern uint8_t sens_itf_send_cmd(sens_itf_cmd_req_t * cmd, sens_itf_cmd_res_t * ans);
+//extern int sens_itf_send_cmd_async(const sens_itf_cmd_req_t * const cmd, const sens_itf_cmd_res_t * ans);
+
+extern uint8_t sens_itf_mote_init(void);
+extern uint8_t sens_itf_sensor_init(void);
+extern void sens_itf_mote_main(void);
+
+extern uint8_t sens_itf_unpack_point_value(sens_itf_cmd_point_t *point, uint8_t *buf);
+extern uint8_t sens_itf_pack_point_value(const sens_itf_cmd_point_t *point, uint8_t *buf);
+
+extern uint8_t sens_itf_unpack_cmd_res(sens_itf_cmd_res_t *cmd, uint8_t *frame, uint8_t frame_size);
+extern uint8_t sens_itf_unpack_cmd_req(sens_itf_cmd_req_t *cmd, uint8_t *frame, uint8_t frame_size);
+extern uint8_t sens_itf_pack_cmd_res  (sens_itf_cmd_res_t *cmd, uint8_t *frame);
+extern uint8_t sens_itf_pack_cmd_req  (sens_itf_cmd_req_t *cmd, uint8_t *frame);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __SENS_ITF_H__ */