mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
227 B
C
15 lines
227 B
C
/* 6LoWPAN MAC header file */
|
|
|
|
#ifndef SIXLOWMAC_H
|
|
#define SIXLOWMAC_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "sixlowip.h"
|
|
|
|
uint16_t get_radio_address(link_layer_addr *lla);
|
|
|
|
void send(void);
|
|
|
|
#endif /* SIXLOWMAC_H*/
|