forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys: transceiver: Provide an adapter to basic_net module
Since basic_net is aimed to replace tranceiver one day, but porting efforts usally take a while, this commit aims to provide access via transceiver as we are used to for radio/network drivers that already implement basic_net (e. g. uart_net in RIOT-OS#1454).
- Loading branch information
Showing
4 changed files
with
555 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
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 | ||
INCLUDES += -I$(RIOTBASE)/sys/net/include | ||
|
||
include $(RIOTBASE)/Makefile.base |
Oops, something went wrong.