summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h b/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h
deleted file mode 100644
index a37b19ff..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/caps.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/************************************************************************//**
- \file caps.h
-
- \brief
- The header file describes the CAPS interface
-
- The file describes the interface and types of CAPS
-
- \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 _CAPS_H
-#define _CAPS_H
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <types.h>
-#include <aps.h>
-#include <appFramework.h>
-#include <macAddr.h>
-//#include <usart.h>
-
-/******************************************************************************
- Define(s) section
-******************************************************************************/
-#define CAPS_SERIAL_CHANNEL UART_CHANNEL_1
-#ifdef _ZCL_SECURITY_
- #define CAPS_DO_NOT_USE_APS_SECURITY false
-#else /* _ZCL_SECURITY_ */
- #define CAPS_DO_NOT_USE_APS_SECURITY true
-#endif /* _ZCL_SECURITY_ */
-
-/******************************************************************************
- Types section
-******************************************************************************/
-
-
-/*****************************************************************************
- Special CAPS data types definition
-*****************************************************************************/
-typedef enum
-{
- CAPS_SERIAL_NONE = 0x00,
- CAPS_SERIAL_UART = 0x01
-} CAPS_Serial_t;
-
-
-/******************************************************************************
- Constants section
-******************************************************************************/
-
-/******************************************************************************
- External variables section
-******************************************************************************/
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-
-
-/*****************************************************************************
- CAPS API Prototypes
-*****************************************************************************/
-
-/**************************************************************************//**
- \brief CAPS Data Request interface.
-
- APS_DataConf field in APS_DataReq must be an actual confirm handler pointer.
-
- \param[in] req The APS_DataReq_t primitive pointer.
- \param[in] serial The serial flag for redirection to the serial interface. CAPS_Serial_t must be used.
- \param[in] noApsSecurity If true APS security is switched off.
- \return None.
-*****************************************************************************/
-extern void CAPS_DataReq(APS_DataReq_t *req, uint8_t serial, bool noApsSecurity);
-
-#endif //#ifndef _CAPS_H
-
-
-//eof caps.h