Skip to content

Commit c8560db

Browse files
author
Juha Heiskanen
committed
Updated RPL default memory sof and hard limit to 2/4 from 1/2.
This is mandatory change to support store 16 version update. Change-Id: Id7111a323580bafc34693f9b52ce455feb83517b
1 parent 05aa54c commit c8560db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/RPL/rpl_control.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
const uint8_t ADDR_LINK_LOCAL_ALL_RPL_NODES[16] = { 0xff, 0x02, [15] = 0x1a };
6161

6262
/* Sensible default limits for a 6LoWPAN-ND node */
63-
static size_t rpl_purge_threshold = 1 * 1024;
64-
static size_t rpl_alloc_limit = 2 * 1024; // 0 means no limit
63+
static size_t rpl_purge_threshold = 2 * 1024;
64+
static size_t rpl_alloc_limit = 4 * 1024; // 0 means no limit
6565

6666
static size_t rpl_alloc_total;
6767
#define RPL_ALLOC_OVERHEAD 8

0 commit comments

Comments
 (0)