ReadMFG.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ReadMFG (struct plc * plc, uint16_t MMTYPE);
  11. *
  12. * plc.h
  13. *
  14. * read a manufacturer specific management message of the given
  15. * type in platform independent manner; return the number of bytes
  16. * read, 0 on timeout or -1 on error;
  17. *
  18. * see SendMME for the send counterpart to this function;
  19. *
  20. * see ReadMME for the vendor specific version of this function;
  21. *
  22. * readpacket behaves like the read function but there are several
  23. * readpacket functions in the toolkit and each performs raw packet
  24. * i/o differently depending on environment; they all use a channel
  25. * structure;
  26. *
  27. * Contributor(s):
  28. * Charles Maier <cmaier@qca.qualcomm.com>
  29. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  30. *
  31. *--------------------------------------------------------------------*/
  32. #ifndef READMFG_SOURCE
  33. #define READMFG_SOURCE
  34. #include <memory.h>
  35. #include "../plc/plc.h"
  36. #include "../ether/channel.h"
  37. #include "../tools/memory.h"
  38. #include "../tools/flags.h"
  39. signed ReadMFG (struct plc * plc, uint8_t MMV, uint16_t MMTYPE)
  40. {
  41. struct channel * channel = (struct channel *) (plc->channel);
  42. struct message * message = (struct message *) (plc->message);
  43. struct homeplug1 * homeplug = (struct homeplug1 *) (message);
  44. while ((plc->packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  45. {
  46. if (homeplug->homeplug.MMV != MMV)
  47. {
  48. continue;
  49. }
  50. if (homeplug->homeplug.MMTYPE != HTOLE16 (MMTYPE))
  51. {
  52. continue;
  53. }
  54. break;
  55. }
  56. return (plc->packetsize);
  57. }
  58. #endif