1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

Relocate ieee802154_frame.h

This commit is contained in:
Martin Lenders 2013-09-18 14:13:19 +02:00
parent 1a749a32ff
commit e843727ed4
8 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
INCLUDES = -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net -I$(RIOTBASE)/core/include -Iinclude/ -I$(RIOTBASE)/sys/net/ieee802154/
INCLUDES = -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net -I$(RIOTBASE)/core/include -Iinclude/ -I$(RIOTBASE)/sys/net/ieee802154/include
MODULE =at86rf231
DIRS =

View File

@ -4,7 +4,7 @@
#include <stdio.h>
#include <stdint.h>
#include <ieee802154/ieee802154_frame.h>
#include "ieee802154_frame.h"
#include <at86rf231_settings.h>

View File

@ -1,4 +1,4 @@
INCLUDES = -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net -I$(RIOTBASE)/core/include -Iinclude/ -I$(RIOTBASE)/sys/net/ieee802154/
INCLUDES = -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net -I$(RIOTBASE)/core/include -Iinclude/ -I$(RIOTBASE)/sys/net/ieee802154/include
MODULE =cc2420
DIRS =

View File

@ -76,7 +76,7 @@ Frame type value:
#ifndef CC2420_H
#define CC2420_H
#include <ieee802154/ieee802154_frame.h>
#include <ieee802154_frame.h>
#include <cc2420_settings.h>
#define CC2420_MAX_PKT_LENGTH 127

View File

@ -1,4 +1,4 @@
MODULE:=$(shell basename $(CURDIR))
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include -I$(RIOTBASE)/drivers/include -I$(RIOTBASE)/sys/net
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include -I$(RIOTBASE)/drivers/include -I$(RIOTBASE)/sys/net -I$(RIOTBASE)/sys/net/ieee802154/include
include $(RIOTBASE)/Makefile.base

View File

@ -1,5 +1,5 @@
/**
* Data struct and prototypes for the IEEE 802.15.4 frame format
* Data struct and prototypes for the IEEE 802.15.4 frame format
*
* Copyright (C) 2013 INRIA.
*
@ -7,17 +7,17 @@
* Public License. See the file LICENSE in the top level directory for more
* details.
*
* @ingroup sixlowpan
* @ingroup net
* @{
* @file ieee802154_frame.h
* @file ieee802154/ieee802154_frame.h
* @brief IEEE 802.14.4 framing data structs and prototypes
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
* @author Oliver Hahm <oliver.hahm@inria.fr>
* @}
*/
#ifndef IEEE802154_FRAME
#define IEEE802154_FRAME
#ifndef IEEE802154_IEEE802154_FRAME
#define IEEE802154_IEEE802154_FRAME
#include <stdio.h>
#include <stdint.h>
@ -65,4 +65,4 @@ uint8_t get_802154_pkt_len(void);
uint8_t read_802154_frame(uint8_t *buf, ieee802154_frame_t *frame, uint8_t len);
void print_802154_fcf_frame(ieee802154_frame_t *frame);
#endif /* IEEE802154_FRAME */
#endif /* IEEE802154_IEEE802154_FRAME */

View File

@ -16,7 +16,7 @@
#include <transceiver.h>
#include "sixlowpan.h"
#include "ieee802154/ieee802154_frame.h"
#include "ieee802154_frame.h"
//prototytpes
static uint8_t etx_count_packet_tx(etx_neighbor_t *candidate);

View File

@ -26,6 +26,7 @@
#include "posix_io.h"
#include "board_uart0.h"
#include "ieee802154_frame.h"
#include "sixlowpan/error.h"
#include "bordermultiplex.h"
#include "flowcontrol.h"
@ -34,7 +35,6 @@
#include "icmp.h"
#include "serialnumber.h"
#include "sys/net/ieee802154/ieee802154_frame.h"
#include "sys/net/net_help/net_help.h"
#define READER_STACK_SIZE (KERNEL_CONF_STACKSIZE_DEFAULT)