Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cm-projects/ieee802154-radio-eval
  • hartung/ieee802154-radio-eval
2 results
Show changes
Commits on Source (1)
APPLICATION=software APPLICATION=software
BOARD ?= inga_blue #BOARD ?= inga_blue
RIOTBASE ?= $(CURDIR)/../../RIOT/ RIOTBASE ?= ../../../RIOT/PinChangeInterruptBranch/RIOT
BOARD_USES_I2C := inga_red inga_blue /
USEMODULE += shell USEMODULE += shell
USEMODULE += shell_commands USEMODULE += shell_commands
...@@ -11,7 +13,9 @@ USEMODULE += gnrc_netdev_default ...@@ -11,7 +13,9 @@ USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif USEMODULE += auto_init_gnrc_netif
#USEMODULE += gnrc_txtsnd #USEMODULE += gnrc_txtsnd
#USEMODULE += gnrc_pktdump #USEMODULE += gnrc_pktdump
USEMODULE += periph_i2c ifneq (,$(filter $(BOARD),$(BOARD_USES_I2C)))
USEMODULE += periph_i2c
endif
NODE_ID ?= 0 NODE_ID ?= 0
CFLAGS += -DNODE_ID=$(NODE_ID) CFLAGS += -DNODE_ID=$(NODE_ID)
...@@ -19,9 +23,10 @@ CFLAGS += -DDEBUG_ASSERT_VERBOSE ...@@ -19,9 +23,10 @@ CFLAGS += -DDEBUG_ASSERT_VERBOSE
CFLAGS += -DGNRC_PKTBUF_SIZE=512 CFLAGS += -DGNRC_PKTBUF_SIZE=512
CFLAGS += -DSHELL_NO_ECHO -DSHELL_NO_PROMPT CFLAGS += -DSHELL_NO_ECHO -DSHELL_NO_PROMPT
BAUD := 9600
CFLAGS += -DUART_STDIO_BAUDRATE=9600
DEVELHELP ?= 1 DEVELHELP ?= 1
# No debug information # No debug information
......