mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
286 B
C
12 lines
286 B
C
|
/* 6LoWPAN MAC header file */
|
||
|
|
||
|
#define MSBA2_OUI 0x005BA2 // 24bit OUI
|
||
|
#define MSBA2_R8BIT 0xA2 // random 8bit
|
||
|
|
||
|
typedef struct mac_addr{
|
||
|
uint16_t oui_1;
|
||
|
uint8_t oui_2;
|
||
|
uint8_t ext_ident_1; // MSBA2_R8BIT
|
||
|
uint16_t ext_ident_2; // radio address
|
||
|
} mac_addr;
|