From 22abd06132445a55a1a0266897920f26634825c1 Mon Sep 17 00:00:00 2001 From: Florent Duchon Date: Wed, 26 Dec 2012 17:38:10 +0100 Subject: digital/beacon: remove obsolete bitcloud stack --- .../Components/ZCL/include/zclMessagingCluster.h | 185 --------------------- 1 file changed, 185 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclMessagingCluster.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclMessagingCluster.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclMessagingCluster.h b/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclMessagingCluster.h deleted file mode 100644 index 4e0e11cb..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclMessagingCluster.h +++ /dev/null @@ -1,185 +0,0 @@ -/************************************************************************//** - \file zclMessageingCluster.h - - \brief - The header file describes the ZCL Message Cluster - - The header file describes the ZCL Message Cluster - - \author - Atmel Corporation: http://www.atmel.com \n - Support email: avr@atmel.com - - Copyright (c) 2008-2011, Atmel Corporation. All rights reserved. - Licensed under Atmel's Limited License Agreement (BitCloudTM). - - \internal - History: - 27.11.08 A. Potashov - Created. -******************************************************************************/ - -#ifndef _MESSAGINGCLUSTER_H -#define _MESSAGINGCLUSTER_H - -#include -#include -/******************************************************************************* - Defines section - ******************************************************************************/ -/***************************************************************************//** -\brief Macros defines duration value of Display Message command, - * which means 'until change'. - * According to ZB AMI Spec r15, D.5.2.3.1.1.1, page 203. -*******************************************************************************/ -#define DISPLAY_MESSAGE_DURATION_UNTIL_CHANGED 0xFFFF - -/*************************************************************************//** - \brief Message Cluster attributes amount -*****************************************************************************/ -#define MESSAGE_CLUSTER_CLIENT_ATTRIBUTES_AMOUNT 0 -#define MESSAGE_CLUSTER_SERVER_ATTRIBUTES_AMOUNT 0 - -/*************************************************************************//** - \brief Message Cluster commands amount -*****************************************************************************/ -#define MESSAGE_CLUSTER_COMMANDS_AMOUNT 4 - -#define DISPLAY_MESSAGE_COMMAND_ID 0x00 -#define CANCEL_MESSAGE_COMMAND_ID 0x01 -#define GET_LAST_MESSAGE_COMMAND_ID 0x00 -#define CONFIRM_MESSAGE_COMMAND_ID 0x01 - -#define DEFINE_MESSAGING_CLUSTER_COMMANDS(clDisplayMessageInd, clCancelMessageInd, clGetLastMessageInd, clMessageConfirmationInd) \ - DEFINE_COMMAND(displayMessageCommand, 0x00, COMMAND_OPTIONS(SERVER_TO_CLIENT, ZCL_THERE_IS_RELEVANT_RESPONSE, ZCL_COMMAND_ACK), clDisplayMessageInd), \ - DEFINE_COMMAND(cancelMessageCommand, 0x01, COMMAND_OPTIONS(SERVER_TO_CLIENT, ZCL_THERE_IS_NO_RELEVANT_RESPONSE, ZCL_COMMAND_ACK), clCancelMessageInd), \ - DEFINE_COMMAND(getLastMessageCommand, 0x00, COMMAND_OPTIONS(CLIENT_TO_SERVER, ZCL_THERE_IS_RELEVANT_RESPONSE, ZCL_COMMAND_ACK), clGetLastMessageInd), \ - DEFINE_COMMAND(messageConfirmationCommand, 0x01, COMMAND_OPTIONS(CLIENT_TO_SERVER, ZCL_THERE_IS_NO_RELEVANT_RESPONSE, ZCL_COMMAND_ACK), clMessageConfirmationInd) - -#define MESSAGING_CLUSTER_ZCL_CLIENT_CLUSTER_TYPE(clattributes, clcommands) \ - { \ - .id = MESSAGE_CLUSTER_ID, \ - .options = {.type = ZCL_CLIENT_CLUSTER_TYPE, .security = ZCL_APPLICATION_LINK_KEY_CLUSTER_SECURITY}, \ - .attributesAmount = MESSAGE_CLUSTER_CLIENT_ATTRIBUTES_AMOUNT, \ - .attributes = (uint8_t *)clattributes, \ - .commandsAmount = MESSAGE_CLUSTER_COMMANDS_AMOUNT, \ - .commands = (uint8_t *)clcommands \ - } - -#define MESSAGING_CLUSTER_ZCL_SERVER_CLUSTER_TYPE(clattributes, clcommands) \ - { \ - .id = MESSAGE_CLUSTER_ID, \ - .options = {.type = ZCL_SERVER_CLUSTER_TYPE, .security = ZCL_APPLICATION_LINK_KEY_CLUSTER_SECURITY}, \ - .attributesAmount = MESSAGE_CLUSTER_SERVER_ATTRIBUTES_AMOUNT, \ - .attributes = (uint8_t *)clattributes, \ - .commandsAmount = MESSAGE_CLUSTER_COMMANDS_AMOUNT, \ - .commands = (uint8_t *)clcommands \ - } -#define DEFINE_MESSAGING_CLUSTER(cltype, clattributes, clcommands) MESSAGING_CLUSTER_##cltype(clattributes, clcommands) - -BEGIN_PACK - -typedef struct PACK -{ - LITTLE_ENDIAN_OCTET(4,( - uint8_t transmissionType : 2, - uint8_t importanceLevel : 2, - uint8_t reserved : 3, - uint8_t messageConfirmation : 1 - )) -} MessageControl_t; - -/***************************************************************************//** - \brief - ZCL Messaging Cluster Display Message Command payload format -*******************************************************************************/ -typedef struct PACK -{ - uint32_t messageId; //!