forked from contiki-os/contiki
-
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.
- Loading branch information
1 parent
3337294
commit bc222ed
Showing
3 changed files
with
32 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
all: ip64-router | ||
CONTIKI=../.. | ||
|
||
include $(CONTIKI)/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include "contiki.h" | ||
#include "contiki-net.h" | ||
#include "ip64.h" | ||
#include "net/netstack.h" | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
PROCESS(router_node_process, "Router node"); | ||
AUTOSTART_PROCESSES(&router_node_process); | ||
/*---------------------------------------------------------------------------*/ | ||
PROCESS_THREAD(router_node_process, ev, data) | ||
{ | ||
PROCESS_BEGIN(); | ||
|
||
/* Set us up as a RPL root node. */ | ||
rpl_dag_root_init_dag(); | ||
|
||
/* Initialize the IP64 module so we'll start translating packets */ | ||
ip64_init(); | ||
|
||
/* ... and do nothing more. */ | ||
while(1) { | ||
PROCESS_WAIT_EVENT(); | ||
} | ||
|
||
PROCESS_END(); | ||
} | ||
/*---------------------------------------------------------------------------*/ |
Empty file.