123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995 |
- /**************************************************************************************************
- Filename: zcl_lighting.c
- Revised: $Date: 2010-02-09 15:28:14 -0800 (Tue, 09 Feb 2010) $
- Revision: $Revision: 21679 $
- Description: Zigbee Cluster Library - Lighting
- Copyright 2006-2010 Texas Instruments Incorporated. All rights reserved.
- IMPORTANT: Your use of this Software is limited to those specific rights
- granted under the terms of a software license agreement between the user
- who downloaded the software, his/her employer (which must be your employer)
- and Texas Instruments Incorporated (the "License"). You may not use this
- Software unless you agree to abide by the terms of the License. The License
- limits your use, and you acknowledge, that the Software may not be modified,
- copied or distributed unless embedded on a Texas Instruments microcontroller
- or used solely and exclusively in conjunction with a Texas Instruments radio
- frequency transceiver, which is integrated into your product. Other than for
- the foregoing purpose, you may not use, reproduce, copy, prepare derivative
- works of, modify, distribute, perform, display or sell this Software and/or
- its documentation for any purpose.
- YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
- PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
- NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
- TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
- NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
- LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
- INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
- OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
- OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
- (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
- Should you have any questions regarding your right to use this Software,
- contact Texas Instruments Incorporated at www.TI.com.
- **************************************************************************************************/
- /*********************************************************************
- * INCLUDES
- */
- #include "ZComDef.h"
- #include "OSAL.h"
- #include "zcl.h"
- #include "zcl_general.h"
- #include "zcl_lighting.h"
- #if defined ( INTER_PAN )
- #include "stub_aps.h"
- #endif
- /*********************************************************************
- * MACROS
- */
- /*********************************************************************
- * CONSTANTS
- */
- /*********************************************************************
- * TYPEDEFS
- */
- typedef struct zclLightingCBRec
- {
- struct zclLightingCBRec *next;
- uint8 endpoint; // Used to link it into the endpoint descriptor
- zclLighting_AppCallbacks_t *CBs; // Pointer to Callback function
- } zclLightingCBRec_t;
- /*********************************************************************
- * GLOBAL VARIABLES
- */
- /*********************************************************************
- * GLOBAL FUNCTIONS
- */
- /*********************************************************************
- * LOCAL VARIABLES
- */
- static zclLightingCBRec_t *zclLightingCBs = (zclLightingCBRec_t *)NULL;
- static uint8 zclLightingPluginRegisted = FALSE;
- /*********************************************************************
- * LOCAL FUNCTIONS
- */
- static ZStatus_t zclLighting_HdlIncoming( zclIncoming_t *pInHdlrMsg );
- static ZStatus_t zclLighting_HdlInSpecificCommands( zclIncoming_t *pInMsg );
- static zclLighting_AppCallbacks_t *zclLighting_FindCallbacks( uint8 endpoint );
- static ZStatus_t zclLighting_ProcessInColorControlCmds( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToHue( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveHue( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepHue( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToSaturation( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveSaturation( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepSaturation( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToHueAndSaturation( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToColor( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveColor( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepColor( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToColorTemperature( zclIncoming_t *pInMsg, zclLighting_AppCallbacks_t *pCBs );
- /*********************************************************************
- * @fn zclLighting_RegisterCmdCallbacks
- *
- * @brief Register an applications command callbacks
- *
- * @param endpoint - application's endpoint
- * @param callbacks - pointer to the callback record.
- *
- * @return ZMemError if not able to allocate
- */
- ZStatus_t zclLighting_RegisterCmdCallbacks( uint8 endpoint, zclLighting_AppCallbacks_t *callbacks )
- {
- zclLightingCBRec_t *pNewItem;
- zclLightingCBRec_t *pLoop;
- // Register as a ZCL Plugin
- if ( zclLightingPluginRegisted == FALSE )
- {
- zcl_registerPlugin( ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- ZCL_CLUSTER_ID_LIGHTING_BALLAST_CONFIG,
- zclLighting_HdlIncoming );
- zclLightingPluginRegisted = TRUE;
- }
- // Fill in the new profile list
- pNewItem = osal_mem_alloc( sizeof( zclLightingCBRec_t ) );
- if ( pNewItem == NULL )
- return (ZMemError);
- pNewItem->next = (zclLightingCBRec_t *)NULL;
- pNewItem->endpoint = endpoint;
- pNewItem->CBs = callbacks;
- // Find spot in list
- if ( zclLightingCBs == NULL )
- {
- zclLightingCBs = pNewItem;
- }
- else
- {
- // Look for end of list
- pLoop = zclLightingCBs;
- while ( pLoop->next != NULL )
- pLoop = pLoop->next;
- // Put new item at end of list
- pLoop->next = pNewItem;
- }
-
- return ( ZSuccess );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveToHueCmd
- *
- * @brief Call to send out a Move To Hue Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param hue - target hue value
- * @param direction - direction of hue change
- * @param transitionTime - tame taken to move to the target hue in 1/10 sec increments
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveToHueCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 hue, uint8 direction, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[4];
-
- buf[0] = hue;
- buf[1] = direction;
- buf[2] = LO_UINT16( transitionTime );
- buf[3] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_TO_HUE, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 4, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveHueCmd
- *
- * @brief Call to send out a Move To Hue Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param moveMode - LIGHTING_MOVE_HUE_STOP, LIGHTING_MOVE_HUE_UP,
- * LIGHTING_MOVE_HUE_DOWN
- * @param rate - the movement in steps per second, where step is
- * a change in the device's hue of one unit
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveHueCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 moveMode, uint8 rate,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[2];
-
- buf[0] = moveMode;
- buf[1] = rate;
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_HUE, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 2, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_StepHueCmd
- *
- * @brief Call to send out a Step Hue Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param stepMode - LIGHTING_STEP_HUE_UP, LIGHTING_STEP_HUE_DOWN
- * @param stepSize - change to the current value of the device's hue
- * @param transitionTime - the movement in steps per 1/10 second
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_StepHueCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 stepMode, uint8 stepSize, uint8 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[3];
-
- buf[0] = stepMode;
- buf[1] = stepSize;
- buf[2] = transitionTime;
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_STEP_HUE, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 3, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveToSaturationCmd
- *
- * @brief Call to send out a Move To Saturation Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param saturation - target saturation value
- * @param transitionTime - time taken move to the target saturation,
- * in 1/10 second units
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveToSaturationCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 saturation, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[3];
-
- buf[0] = saturation;
- buf[1] = LO_UINT16( transitionTime );
- buf[2] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_TO_SATURATION, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 3, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveSaturationCmd
- *
- * @brief Call to send out a Move Saturation Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param moveMode - LIGHTING_MOVE_SATURATION_STOP, LIGHTING_MOVE_SATURATION_UP,
- * LIGHTING_MOVE_SATURATION_DOWN
- * @param rate - rate of movement in step/sec; step is the device's saturation of one unit
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveSaturationCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 moveMode, uint8 rate,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[2];
-
- buf[0] = moveMode;
- buf[1] = rate;
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_SATURATION, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 2, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_StepSaturationCmd
- *
- * @brief Call to send out a Step Saturation Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param stepMode - LIGHTING_STEP_SATURATION_UP, LIGHTING_STEP_SATURATION_DOWN
- * @param stepSize - change to the current value of the device's hue
- * @param transitionTime - time to perform a single step in 1/10 of second
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_StepSaturationCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 stepMode, uint8 stepSize, uint8 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[3];
-
- buf[0] = stepMode;
- buf[1] = stepSize;
- buf[2] = transitionTime;
-
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_STEP_SATURATION, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 3, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveToHueAndSaturationCmd
- *
- * @brief Call to send out a Move To Hue And Saturation Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param hue - a target hue
- * @param saturation - a target saturation
- * @param transitionTime - time to move, equal of the value of the field in 1/10 seconds
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveToHueAndSaturationCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint8 hue, uint8 saturation, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[4];
-
- buf[0] = hue;
- buf[1] = saturation;
- buf[2] = LO_UINT16( transitionTime );
- buf[3] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_TO_HUE_AND_SATURATION, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 4, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveToColorCmd
- *
- * @brief Call to send out a Move To Color Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param colorX - a target color X
- * @param colorY - a target color Y
- * @param transitionTime - time to move, equal of the value of the field in 1/10 seconds
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveToColorCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint16 colorX, uint16 colorY, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[6];
-
- buf[0] = LO_UINT16( colorX );
- buf[1] = HI_UINT16( colorX );
- buf[2] = LO_UINT16( colorY );
- buf[3] = HI_UINT16( colorY );
- buf[4] = LO_UINT16( transitionTime );
- buf[5] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_TO_COLOR, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 6, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveColorCmd
- *
- * @brief Call to send out a Move Color Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param rateX - rate of movement in steps per second. A step is a change
- * in the device's CurrentX attribute of one unit.
- * @param rateY - rate of movement in steps per second. A step is a change
- * in the device's CurrentY attribute of one unit.
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveColorCmd( uint8 srcEP, afAddrType_t *dstAddr,
- int16 rateX, int16 rateY,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[4];
-
- buf[0] = LO_UINT16( rateX );
- buf[1] = HI_UINT16( rateX );
- buf[2] = LO_UINT16( rateY );
- buf[3] = HI_UINT16( rateY );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_COLOR, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 4, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_StepColorCmd
- *
- * @brief Call to send out a Step Color Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param stepX - change to be added to the device's CurrentX attribute
- * @param stepY - change to be added to the device's CurrentY attribute
- * @param transitionTime - time to perform the color change, equal of
- * the value of the field in 1/10 seconds
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_StepColorCmd( uint8 srcEP, afAddrType_t *dstAddr,
- int16 stepX, int16 stepY, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[6];
-
- buf[0] = LO_UINT16( stepX );
- buf[1] = HI_UINT16( stepX );
- buf[2] = LO_UINT16( stepY );
- buf[3] = HI_UINT16( stepY );
- buf[4] = LO_UINT16( transitionTime );
- buf[5] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_STEP_COLOR, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 6, buf );
- }
- /*********************************************************************
- * @fn zclLighting_ColorControl_Send_MoveToColorTemperatureCmd
- *
- * @brief Call to send out a Move To Color Temperature Command
- *
- * @param srcEP - Sending application's endpoint
- * @param dstAddr - where you want the message to go
- * @param colorTemperature - a target color temperature
- * @param transitionTime - time to perform the color change, equal of
- * the value of the field in 1/10 seconds
- * @param disableDefaultRsp - whether to disable the Default Response command
- * @param seqNum - sequence number
- *
- * @return ZStatus_t
- */
- ZStatus_t zclLighting_ColorControl_Send_MoveToColorTemperatureCmd( uint8 srcEP, afAddrType_t *dstAddr,
- uint16 colorTemperature, uint16 transitionTime,
- uint8 disableDefaultRsp, uint8 seqNum )
- {
- uint8 buf[4];
-
- buf[0] = LO_UINT16( colorTemperature );
- buf[1] = HI_UINT16( colorTemperature );
- buf[2] = LO_UINT16( transitionTime );
- buf[3] = HI_UINT16( transitionTime );
- return zcl_SendCommand( srcEP, dstAddr, ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL,
- COMMAND_LIGHTING_MOVE_TO_COLOR_TEMPERATURE, TRUE,
- ZCL_FRAME_CLIENT_SERVER_DIR, disableDefaultRsp, 0, seqNum, 4, buf );
- }
- /*********************************************************************
- * @fn zclLighting_FindCallbacks
- *
- * @brief Find the callbacks for an endpoint
- *
- * @param endpoint - endpoint to find the application callbacks for
- *
- * @return pointer to the callbacks
- */
- static zclLighting_AppCallbacks_t *zclLighting_FindCallbacks( uint8 endpoint )
- {
- zclLightingCBRec_t *pCBs;
-
- pCBs = zclLightingCBs;
- while ( pCBs != NULL )
- {
- if ( pCBs->endpoint == endpoint )
- return ( pCBs->CBs );
- pCBs = pCBs->next;
- }
- return ( (zclLighting_AppCallbacks_t *)NULL );
- }
- /*********************************************************************
- * @fn zclLighting_HdlIncoming
- *
- * @brief Callback from ZCL to process incoming Commands specific
- * to this cluster library or Profile commands for attributes
- * that aren't in the attribute list
- *
- * @param pInMsg - pointer to the incoming message
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_HdlIncoming( zclIncoming_t *pInMsg )
- {
- ZStatus_t stat = ZSuccess;
- #if defined ( INTER_PAN )
- if ( StubAPS_InterPan( pInMsg->msg->srcAddr.panId, pInMsg->msg->srcAddr.endPoint ) )
- return ( stat ); // Cluster not supported thru Inter-PAN
- #endif
- if ( zcl_ClusterCmd( pInMsg->hdr.fc.type ) )
- {
- // Is this a manufacturer specific command?
- if ( pInMsg->hdr.fc.manuSpecific == 0 )
- {
- stat = zclLighting_HdlInSpecificCommands( pInMsg );
- }
- else
- {
- // We don't support any manufacturer specific command.
- stat = ZFailure;
- }
- }
- else
- {
- // Handle all the normal (Read, Write...) commands -- should never get here
- stat = ZFailure;
- }
- return ( stat );
- }
- /*********************************************************************
- * @fn zclLighting_HdlInSpecificCommands
- *
- * @brief Callback from ZCL to process incoming Commands specific
- * to this cluster library
- * @param pInMsg - pointer to the incoming message
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_HdlInSpecificCommands( zclIncoming_t *pInMsg )
- {
- ZStatus_t stat = ZSuccess;
- zclLighting_AppCallbacks_t *pCBs;
-
- // make sure endpoint exists
- pCBs = zclLighting_FindCallbacks( pInMsg->msg->endPoint );
- if (pCBs == NULL )
- return ( ZFailure );
-
- switch ( pInMsg->msg->clusterId )
- {
- case ZCL_CLUSTER_ID_LIGHTING_COLOR_CONTROL:
- stat = zclLighting_ProcessInColorControlCmds( pInMsg, pCBs );
- break;
- case ZCL_CLUSTER_ID_LIGHTING_BALLAST_CONFIG:
- // no commands
- default:
- stat = ZFailure;
- break;
- }
- return ( stat );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInColorControlCmds
- *
- * @brief Callback from ZCL to process incoming Commands specific
- * to this cluster library on a command ID basis
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInColorControlCmds( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- ZStatus_t stat;
- switch ( pInMsg->hdr.commandID )
- {
- case COMMAND_LIGHTING_MOVE_TO_HUE:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveToHue( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_HUE:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveHue( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_STEP_HUE:
- stat = zclLighting_ProcessInCmd_ColorControl_StepHue( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_TO_SATURATION:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveToSaturation( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_SATURATION:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveSaturation( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_STEP_SATURATION:
- stat = zclLighting_ProcessInCmd_ColorControl_StepSaturation( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_TO_HUE_AND_SATURATION:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveToHueAndSaturation( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_TO_COLOR:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveToColor( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_COLOR:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveColor( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_STEP_COLOR:
- stat = zclLighting_ProcessInCmd_ColorControl_StepColor( pInMsg, pCBs );
- break;
- case COMMAND_LIGHTING_MOVE_TO_COLOR_TEMPERATURE:
- stat = zclLighting_ProcessInCmd_ColorControl_MoveToColorTemperature( pInMsg, pCBs );
- break;
- default:
- // Unknown command
- stat = ZFailure;
- break;
- }
- return ( stat );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveToHue
- *
- * @brief Process in the received Move To Hue Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToHue( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveToHue )
- {
- zclCCMoveToHue_t cmd;
-
- cmd.hue = pInMsg->pData[0];
- cmd.direction = pInMsg->pData[1];
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
-
- return ( pCBs->pfnColorControl_MoveToHue( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveHue
- *
- * @brief Process in the received Move Hue Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveHue( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- zclCCMoveHue_t cmd;
- cmd.moveMode = pInMsg->pData[0];
- cmd.rate = pInMsg->pData[1];
-
- // If the Rate field has a value of zero, the command has no effect and
- // a Default Response command is sent in response, with the status code
- // set to INVALID_FIELD.
- if ( cmd.rate == 0 )
- {
- zclDefaultRspCmd_t defaultRspCmd;
-
- defaultRspCmd.commandID = pInMsg->hdr.commandID;
- defaultRspCmd.statusCode = ZCL_STATUS_INVALID_FIELD;
- zcl_SendDefaultRspCmd( pInMsg->msg->endPoint, &(pInMsg->msg->srcAddr),
- pInMsg->msg->clusterId, &defaultRspCmd,
- ZCL_FRAME_SERVER_CLIENT_DIR, true, 0, pInMsg->hdr.transSeqNum );
-
- // Don't need the ZCL foundation to generate another Default Response command
- return ( ZCL_STATUS_CMD_HAS_RSP );
- }
-
- if ( pCBs->pfnColorControl_MoveHue )
- return ( pCBs->pfnColorControl_MoveHue( &cmd ) );
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_StepHue
- *
- * @brief Process in the received Step Hue Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepHue( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_StepHue )
- {
- zclCCStepHue_t cmd;
-
- cmd.stepMode = pInMsg->pData[0];
- cmd.stepSize = pInMsg->pData[1];
- cmd.transitionTime = pInMsg->pData[2];
-
- return ( pCBs->pfnColorControl_StepHue( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveToSaturation
- *
- * @brief Process in the received Move to Saturation Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToSaturation( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveToSaturation )
- {
- zclCCMoveToSaturation_t cmd;
-
- cmd.saturation = pInMsg->pData[0];
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[1], pInMsg->pData[2] );
-
- return ( pCBs->pfnColorControl_MoveToSaturation( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveSaturation
- *
- * @brief Process in the received Move Saturation Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveSaturation( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- zclCCMoveSaturation_t cmd;
- cmd.moveMode = pInMsg->pData[0];
- cmd.rate = pInMsg->pData[1];
-
- // If the Rate field has a value of zero, the command has no effect and
- // a Default Response command is sent in response, with the status code
- // set to INVALID_FIELD.
- if ( cmd.rate == 0 )
- {
- zclDefaultRspCmd_t defaultRspCmd;
-
- defaultRspCmd.commandID = pInMsg->hdr.commandID;
- defaultRspCmd.statusCode = ZCL_STATUS_INVALID_FIELD;
- zcl_SendDefaultRspCmd( pInMsg->msg->endPoint, &(pInMsg->msg->srcAddr),
- pInMsg->msg->clusterId, &defaultRspCmd,
- ZCL_FRAME_SERVER_CLIENT_DIR, true, 0, pInMsg->hdr.transSeqNum );
- // Don't need the ZCL foundation to generate another Default Response command
- return ( ZCL_STATUS_CMD_HAS_RSP );
- }
-
- if ( pCBs->pfnColorControl_MoveSaturation )
- return ( pCBs->pfnColorControl_MoveSaturation( &cmd ) );
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_StepSaturation
- *
- * @brief Process in the received Step Saturation Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepSaturation( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_StepSaturation )
- {
- zclCCStepSaturation_t cmd;
-
- cmd.stepMode = pInMsg->pData[0];
- cmd.stepSize = pInMsg->pData[1];
- cmd.transitionTime = pInMsg->pData[2];
-
- return ( pCBs->pfnColorControl_StepSaturation( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveToHueAndSaturation
- *
- * @brief Process in the received Move To Hue And Saturation Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToHueAndSaturation( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveToHueAndSaturation )
- {
- zclCCMoveToHueAndSaturation_t cmd;
-
- cmd.hue = pInMsg->pData[0];
- cmd.saturation = pInMsg->pData[1];
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
-
- return ( pCBs->pfnColorControl_MoveToHueAndSaturation( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveToColor
- *
- * @brief Process in the received Move To Color Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToColor( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveToColor )
- {
- zclCCMoveToColor_t cmd;
-
- cmd.colorX = BUILD_UINT16( pInMsg->pData[0], pInMsg->pData[1] );
- cmd.colorY = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[4], pInMsg->pData[5] );
-
- return ( pCBs->pfnColorControl_MoveToColor( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveColor
- *
- * @brief Process in the received Move Color Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveColor( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveColor )
- {
- zclCCMoveColor_t cmd;
-
- cmd.rateX = BUILD_UINT16( pInMsg->pData[0], pInMsg->pData[1] );
- cmd.rateY = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
-
- pCBs->pfnColorControl_MoveColor( &cmd );
-
- return ( ZSuccess );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_StepColor
- *
- * @brief Process in the received Step Color Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_StepColor( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_StepColor )
- {
- zclCCStepColor_t cmd;
-
- cmd.stepX = BUILD_UINT16( pInMsg->pData[0], pInMsg->pData[1] );
- cmd.stepY = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[4], pInMsg->pData[5] );
-
- return ( pCBs->pfnColorControl_StepColor( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /*********************************************************************
- * @fn zclLighting_ProcessInCmd_ColorControl_MoveToColorTemperature
- *
- * @brief Process in the received Move to Color Temperature Command.
- *
- * @param pInMsg - pointer to the incoming message
- * @param pCBs - pointer to the application callbacks
- *
- * @return ZStatus_t
- */
- static ZStatus_t zclLighting_ProcessInCmd_ColorControl_MoveToColorTemperature( zclIncoming_t *pInMsg,
- zclLighting_AppCallbacks_t *pCBs )
- {
- if ( pCBs->pfnColorControl_MoveToColorTemperature )
- {
- zclCCMoveToColorTemperature_t cmd;
-
- cmd.colorTemperature = BUILD_UINT16( pInMsg->pData[0], pInMsg->pData[1] );
- cmd.transitionTime = BUILD_UINT16( pInMsg->pData[2], pInMsg->pData[3] );
-
- return ( pCBs->pfnColorControl_MoveToColorTemperature( &cmd ) );
- }
-
- return ( ZFailure );
- }
- /****************************************************************************
- ****************************************************************************/
|