Skip to content

Commit

Permalink
ng_rpl: RPL for the gnrc network stack
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundogan committed Aug 18, 2015
1 parent b68213a commit 7f6966a
Show file tree
Hide file tree
Showing 15 changed files with 2,427 additions and 14 deletions.
10 changes: 10 additions & 0 deletions Makefile.dep
Expand Up @@ -258,3 +258,13 @@ endif
ifneq (,$(filter hih6130,$(USEMODULE)))
USEMODULE += vtimer
endif

ifneq (,$(filter ng_rpl,$(USEMODULE)))
USEMODULE += timex
USEMODULE += vtimer
USEMODULE += ng_ipv6_router_default
USEMODULE += trickle
USEMODULE += net_help
USEMODULE += universal_address
USEMODULE += fib
endif
3 changes: 3 additions & 0 deletions sys/Makefile
Expand Up @@ -88,6 +88,9 @@ endif
ifneq (,$(filter ng_zep,$(USEMODULE)))
DIRS += net/application_layer/ng_zep
endif
ifneq (,$(filter ng_rpl,$(USEMODULE)))
DIRS += net/routing/ng_rpl
endif
ifneq (,$(filter ng_rpl_srh,$(USEMODULE)))
DIRS += net/routing/ng_rpl/srh
endif
Expand Down
4 changes: 2 additions & 2 deletions sys/include/net/ng_ipv6/netif.h
Expand Up @@ -42,9 +42,9 @@ extern "C" {
*/
#ifndef NG_IPV6_NETIF_ADDR_NUMOF
#ifdef MODULE_NG_IPV6_ROUTER
#define NG_IPV6_NETIF_ADDR_NUMOF (7) /* router needs all-routers multicast address */
#define NG_IPV6_NETIF_ADDR_NUMOF (8) /* router needs all-routers multicast address */
#else
#define NG_IPV6_NETIF_ADDR_NUMOF (6)
#define NG_IPV6_NETIF_ADDR_NUMOF (7)
#endif
#endif

Expand Down

0 comments on commit 7f6966a

Please sign in to comment.