PushButton.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*====================================================================*
  2. Copyright (c) 2013-2018 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *--------------------------------------------------------------------*/
  8. /*====================================================================*
  9. *
  10. * signed PushButton (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * THis plugin for program plc emulates pushbutton functionality
  15. * using a MS_PB_ENC message; as a special case we do not expect
  16. * a confirm message for one firmware version;
  17. *
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef PUSHBUTTON_SOURCE
  24. #define PUSHBUTTON_SOURCE
  25. #include <stdint.h>
  26. #include <memory.h>
  27. #include "../tools/error.h"
  28. #include "../tools/memory.h"
  29. #include "../plc/plc.h"
  30. signed PushButton (struct plc * plc)
  31. {
  32. struct channel * channel = (struct channel *) (plc->channel);
  33. struct message * message = (struct message *) (plc->message);
  34. #ifndef __GNUC__
  35. #pragma pack (push,1)
  36. #endif
  37. struct __packed ms_pb_enc_request
  38. {
  39. struct ethernet_hdr ethernet;
  40. struct homeplug_hdr homeplug;
  41. uint8_t PBACTION;
  42. }
  43. * request = (struct ms_pb_enc_request *) (message);
  44. struct __packed ms_pb_enc_confirm
  45. {
  46. struct ethernet_hdr ethernet;
  47. struct homeplug_hdr homeplug;
  48. uint8_t MSTATUS;
  49. uint8_t AVLNSTAT;
  50. uint8_t PPBSTATE;
  51. uint8_t CPBSTATE;
  52. }
  53. * confirm = (struct ms_pb_enc_confirm *) (message);
  54. #ifndef __GNUC__
  55. #pragma pack (pop)
  56. #endif
  57. if (plc->pushbutton == 1)
  58. {
  59. Request (plc, "Join Network");
  60. }
  61. if (plc->pushbutton == 2)
  62. {
  63. Request (plc, "Leave Network");
  64. }
  65. if (plc->pushbutton == 3)
  66. {
  67. Request (plc, "Fetch Network Status");
  68. }
  69. if (plc->pushbutton == 4)
  70. {
  71. Request (plc, "Reset to factory defaults");
  72. }
  73. if (plc->pushbutton == 5)
  74. {
  75. Request (plc, "Stop joining the network");
  76. }
  77. if (plc->pushbutton == 6)
  78. {
  79. Request (plc, "Extend reset timeout");
  80. }
  81. if (plc->pushbutton == 7)
  82. {
  83. Request (plc, "Return PB state");
  84. }
  85. memset (message, 0, sizeof (* message));
  86. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  87. request->homeplug.MMV = 0;
  88. request->homeplug.MMTYPE = HTOLE16 (MS_PB_ENC | MMTYPE_REQ);
  89. request->PBACTION = plc->pushbutton;
  90. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  91. if (SendMME (plc) <= 0)
  92. {
  93. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  94. return (-1);
  95. }
  96. if (ReadMFG (plc, 0, (MS_PB_ENC | MMTYPE_CNF)) <= 0)
  97. {
  98. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  99. return (-1);
  100. }
  101. if (confirm->MSTATUS)
  102. {
  103. Failure (plc, PLC_WONTDOIT);
  104. return (-1);
  105. }
  106. if (plc->pushbutton == 1)
  107. {
  108. Confirm (plc, "Joining ...");
  109. return (0);
  110. }
  111. if (plc->pushbutton == 2)
  112. {
  113. Confirm (plc, "Leaving ...");
  114. return (0);
  115. }
  116. if (plc->pushbutton == 3)
  117. {
  118. Confirm (plc, "Membership Status %d", confirm->AVLNSTAT);
  119. return (0);
  120. }
  121. if (plc->pushbutton == 4)
  122. {
  123. Confirm (plc, "Resetting ...");
  124. return (0);
  125. }
  126. if (plc->pushbutton == 5)
  127. {
  128. Confirm (plc, "Stopping ...");
  129. return (0);
  130. }
  131. if (plc->pushbutton == 6)
  132. {
  133. Confirm (plc, "Starting/Extending timeout ...");
  134. return (0);
  135. }
  136. if (plc->pushbutton == 7)
  137. {
  138. Confirm (plc, "Previous PB State %d", confirm->PPBSTATE);
  139. Confirm (plc, "Current PB State %d", confirm->CPBSTATE);
  140. return (0);
  141. }
  142. return (-1);
  143. }
  144. #endif