1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/sixlowpan/sixlowmac.h

23 lines
441 B
C
Raw Normal View History

/* 6LoWPAN MAC header file */
2010-10-17 16:04:03 +02:00
#ifndef SIXLOWMAC_H
#define SIXLOWMAC_H
#include <stdio.h>
#include <stdint.h>
#include "sixlowip.h"
#include "radio/radio.h"
#define RADIO_STACK_SIZE 2048
#define RADIO_RCV_BUF_SIZE 64
#define RADIO_SND_BUF_SIZE 100
#define RADIO_SENDING_DELAY 1000
2010-10-17 16:04:03 +02:00
uint8_t get_radio_address(void);
void send_ieee802154_frame(uint16_t addr);
2010-10-17 16:04:03 +02:00
void send(void);
2010-10-17 16:04:03 +02:00
#endif /* SIXLOWMAC_H*/