zcl_ha.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**************************************************************************************************
  2. Filename: zcl_ha.c
  3. Revised: $Date: 2009-12-22 17:20:57 -0800 (Tue, 22 Dec 2009) $
  4. Revision: $Revision: 21402 $
  5. Description: Describe the purpose and contents of the file.
  6. Copyright 2006-2007 Texas Instruments Incorporated. All rights reserved.
  7. IMPORTANT: Your use of this Software is limited to those specific rights
  8. granted under the terms of a software license agreement between the user
  9. who downloaded the software, his/her employer (which must be your employer)
  10. and Texas Instruments Incorporated (the "License"). You may not use this
  11. Software unless you agree to abide by the terms of the License. The License
  12. limits your use, and you acknowledge, that the Software may not be modified,
  13. copied or distributed unless embedded on a Texas Instruments microcontroller
  14. or used solely and exclusively in conjunction with a Texas Instruments radio
  15. frequency transceiver, which is integrated into your product. Other than for
  16. the foregoing purpose, you may not use, reproduce, copy, prepare derivative
  17. works of, modify, distribute, perform, display or sell this Software and/or
  18. its documentation for any purpose.
  19. YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
  20. PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
  21. INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
  22. NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
  23. TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
  24. NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
  25. LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
  26. INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
  27. OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
  28. OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
  29. (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
  30. Should you have any questions regarding your right to use this Software,
  31. contact Texas Instruments Incorporated at www.TI.com.
  32. **************************************************************************************************/
  33. /*********************************************************************
  34. * INCLUDES
  35. */
  36. #include "ZComDef.h"
  37. #include "OSAL.h"
  38. #include "zcl.h"
  39. #include "zcl_general.h"
  40. #include "zcl_closures.h"
  41. #include "zcl_HVAC.h"
  42. #include "zcl_ss.h"
  43. #include "zcl_ms.h"
  44. #include "zcl_lighting.h"
  45. #include "zcl_ha.h"
  46. /*********************************************************************
  47. * MACROS
  48. */
  49. /*********************************************************************
  50. * CONSTANTS
  51. */
  52. /*********************************************************************
  53. * TYPEDEFS
  54. */
  55. /*********************************************************************
  56. * GLOBAL VARIABLES
  57. */
  58. /*********************************************************************
  59. * EXTERNAL VARIABLES
  60. */
  61. /*********************************************************************
  62. * EXTERNAL FUNCTIONS
  63. */
  64. /*********************************************************************
  65. * LOCAL VARIABLES
  66. */
  67. /*********************************************************************
  68. * LOCAL FUNCTIONS
  69. */
  70. /*********************************************************************
  71. * @fn zclHA_Init
  72. *
  73. * @brief Register the Simple descriptor with the HA profile.
  74. * This function also registers the profile's cluster
  75. * conversion table.
  76. *
  77. * @param simpleDesc - a pointer to a valid SimpleDescriptionFormat_t, must not be NULL.
  78. *
  79. * @return none
  80. */
  81. void zclHA_Init( SimpleDescriptionFormat_t *simpleDesc )
  82. {
  83. endPointDesc_t *epDesc;
  84. // Register the application's endpoint descriptor
  85. // - This memory is allocated and never freed.
  86. epDesc = osal_mem_alloc( sizeof ( endPointDesc_t ) );
  87. if ( epDesc )
  88. {
  89. // Fill out the endpoint description.
  90. epDesc->endPoint = simpleDesc->EndPoint;
  91. epDesc->task_id = &zcl_TaskID; // all messages get sent to ZCL first
  92. epDesc->simpleDesc = simpleDesc;
  93. epDesc->latencyReq = noLatencyReqs;
  94. // Register the endpoint description with the AF
  95. afRegister( epDesc );
  96. }
  97. }
  98. /*********************************************************************
  99. *********************************************************************/