Devices.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * Devices.c - device address synonym tables
  11. *
  12. * plc.h
  13. *
  14. * some device addresses are so common or significant that we give
  15. * them names; users can enter the name instead of the address; all
  16. * toolkit programs can search table devices [] with function
  17. * synonym();
  18. *
  19. * function synonym() uses a binary search to lookup symbols and so
  20. * they must be entered in alphabetical order or lookup errors will
  21. * occur;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef DEVICES_SOURCE
  28. #define DEVICES_SOURCE
  29. /*====================================================================*
  30. * custom include files;
  31. *--------------------------------------------------------------------*/
  32. #include "../plc/plc.h"
  33. #include "../mme/mme.h"
  34. #include "../tools/types.h"
  35. /*====================================================================*
  36. * variables;
  37. *--------------------------------------------------------------------*/
  38. struct _term_ const devices [PLCDEVICES] =
  39. {
  40. {
  41. "all",
  42. BROADCAST
  43. },
  44. {
  45. "broadcast",
  46. BROADCAST
  47. },
  48. {
  49. "local",
  50. LOCALCAST
  51. }
  52. };
  53. byte const broadcast [ETHER_ADDR_LEN] =
  54. {
  55. 0xFF,
  56. 0xFF,
  57. 0xFF,
  58. 0xFF,
  59. 0xFF,
  60. 0xFF
  61. };
  62. byte const localcast [ETHER_ADDR_LEN] =
  63. {
  64. 0x00,
  65. 0xB0,
  66. 0x52,
  67. 0x00,
  68. 0x00,
  69. 0x01
  70. };
  71. /*====================================================================*
  72. *
  73. *--------------------------------------------------------------------*/
  74. #endif