mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
653 B
Makefile
28 lines
653 B
Makefile
BOARD ?= openmote-b
|
|
include ../Makefile.tests_common
|
|
|
|
# Modules to include:
|
|
USEMODULE += shell
|
|
USEMODULE += shell_commands
|
|
USEMODULE += ps
|
|
|
|
# the radio driver to test
|
|
USEMODULE += at86rf215
|
|
|
|
# gnrc is a meta module including all required, basic gnrc networking modules
|
|
USEMODULE += gnrc
|
|
|
|
# automatically initialize the network interface
|
|
USEMODULE += auto_init_gnrc_netif
|
|
|
|
# shell command to send L2 packets with a simple string
|
|
USEMODULE += gnrc_txtsnd
|
|
|
|
# the application dumps received packets to stdout
|
|
USEMODULE += gnrc_pktdump
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Set a custom channel if needed
|
|
include $(RIOTMAKE)/default-radio-settings.inc.mk
|