123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * Devices.c - device address synonym tables
- *
- * plc.h
- *
- * some device addresses are so common or significant that we give
- * them names; users can enter the name instead of the address; all
- * toolkit programs can search table devices [] with function
- * synonym();
- *
- * function synonym() uses a binary search to lookup symbols and so
- * they must be entered in alphabetical order or lookup errors will
- * occur;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef DEVICES_SOURCE
- #define DEVICES_SOURCE
- /*====================================================================*
- * custom include files;
- *--------------------------------------------------------------------*/
- #include "../plc/plc.h"
- #include "../mme/mme.h"
- #include "../tools/types.h"
- /*====================================================================*
- * variables;
- *--------------------------------------------------------------------*/
- struct _term_ const devices [PLCDEVICES] =
- {
- {
- "all",
- BROADCAST
- },
- {
- "broadcast",
- BROADCAST
- },
- {
- "local",
- LOCALCAST
- }
- };
- byte const broadcast [ETHER_ADDR_LEN] =
- {
- 0xFF,
- 0xFF,
- 0xFF,
- 0xFF,
- 0xFF,
- 0xFF
- };
- byte const localcast [ETHER_ADDR_LEN] =
- {
- 0x00,
- 0xB0,
- 0x52,
- 0x00,
- 0x00,
- 0x01
- };
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #endif
|