mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
fa11d82443
IEEE 802.15.4 has two addressing modes: 16-bit short and the device's EUI-64. Currently RIOT supports only sending of packets with 16-bit short addresses via the transceiver interface. This patch allows at least for the radio chips that support IEEE 802.15.4 to let the application/upper layer decide which addressing mode to use. Upper layer implementation will be implemented in follow-up PR to #460
16 lines
326 B
Makefile
16 lines
326 B
Makefile
MODULE =transceiver
|
|
|
|
ifneq (,$(filter cc2420,$(USEMODULE)))
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/include
|
|
endif
|
|
|
|
ifneq (,$(filter at86rf231,$(USEMODULE)))
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/include
|
|
endif
|
|
|
|
ifneq (,$(filter mc1322x,$(USEMODULE)))
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/include
|
|
endif
|
|
|
|
include $(MAKEBASE)/Makefile.base
|