Skip to content

Commit

Permalink
Updated RPL default memory sof and hard limit to 2/4 from 1/2.
Browse files Browse the repository at this point in the history
This is mandatory change to support store 16 version update.

Change-Id: Id7111a323580bafc34693f9b52ce455feb83517b
  • Loading branch information
Juha Heiskanen committed Feb 19, 2020
1 parent 05aa54c commit c8560db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/RPL/rpl_control.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
const uint8_t ADDR_LINK_LOCAL_ALL_RPL_NODES[16] = { 0xff, 0x02, [15] = 0x1a };

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

static size_t rpl_alloc_total;
#define RPL_ALLOC_OVERHEAD 8
Expand Down

0 comments on commit c8560db

Please sign in to comment.