-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers/at86rf2xx: rx timestamp generation for ATmegaRFR2
Signed-off-by: chudov <[email protected]>
- Loading branch information
Showing
7 changed files
with
107 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
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,19 +1,34 @@ | ||
BOARD_WHITELIST = native | ||
BOARD_WHITELIST = native derfmega256 avr-rss2 atmega256rfr2-xpro nrf52840dongle | ||
|
||
include ../Makefile.net_common | ||
|
||
TERMFLAGS ?= -z "0.0.0.0:17755,localhost:17754" | ||
ifeq (native, $(BOARD)) | ||
USEMODULE += socket_zep | ||
TERMFLAGS ?= -z "0.0.0.0:17755,localhost:17754" | ||
USEMODULE += netdev | ||
# somehow this breaks the test | ||
DISABLE_MODULE += test_utils_print_stack_usage | ||
else | ||
USEMODULE += shell | ||
USEMODULE += shell_cmds_default | ||
USEMODULE += ps | ||
# use the default network interface for the board | ||
USEMODULE += netdev_default | ||
# shell command to send L2 packets with a simple string | ||
USEMODULE += gnrc_txtsnd | ||
# module to test rx timestamp | ||
USEMODULE += gnrc_netif_timestamp | ||
endif | ||
|
||
USEMODULE += socket_zep | ||
USEMODULE += auto_init_gnrc_netif | ||
USEMODULE += netdev | ||
# gnrc is a meta module including all required, basic gnrc networking modules | ||
USEMODULE += gnrc | ||
# automatically initialize the network interface | ||
USEMODULE += auto_init_gnrc_netif | ||
# use GNRC IEEE 802.15.4 as link-layer protocol | ||
USEMODULE += gnrc_netif_ieee802154 | ||
# the application dumps received packets to stdout | ||
USEMODULE += gnrc_pktdump | ||
|
||
# somehow this breaks the test | ||
DISABLE_MODULE += test_utils_print_stack_usage | ||
|
||
TEST_ON_CI_WHITELIST += native | ||
|
||
include $(RIOTBASE)/Makefile.include |
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