Skip to content

Commit

Permalink
Merge pull request openwsn-berkeley#201 from openwsn-berkeley/develop…
Browse files Browse the repository at this point in the history
…_FW-408

FW-408. Fixed.
  • Loading branch information
xvilajosana committed Jul 1, 2015
2 parents 7bd0bbd + 6e77fa0 commit 6bdb50d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions openstack/03b-IPv6/icmpv6rpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
#define TIMER_DIO_TIMEOUT 1700
#define TIMER_DAO_TIMEOUT 10000

#define MOP_DIO_A 1<<5
#define MOP_DIO_B 1<<4
// Non-Storing Mode of Operation (1)
#define MOP_DIO_A 0<<5
#define MOP_DIO_B 0<<4
#define MOP_DIO_C 1<<3
// least preferred (0)
#define PRF_DIO_A 0<<2
#define PRF_DIO_B 0<<1
#define PRF_DIO_C 0<<0
// Grounded (1)
#define G_DIO 1<<7

#define FLAG_DAO_A 0<<0
Expand Down

0 comments on commit 6bdb50d

Please sign in to comment.