/*********************************************************************
* @fn zcl_Init
*
* @brief Initialization function for the zcl layer.
*
* @param task_id - ZCL task id
*
* @return none
*/
void zcl_Init( uint8 task_id )
{
zcl_TaskID = task_id;
plugins = (zclLibPlugin_t *)NULL;
attrList = (zclAttrRecsList *)NULL;
clusterOptionList = (zclClusterOptionList *)NULL;
}
/*********************************************************************
* @fn zcl_event_loop
*
* @brief Event Loop Processor for zcl.
*
* @param task_id - task id
* @param events - event bitmap
*
* @return unprocessed events
*/