diff --git a/arch/cpu/cc26xx-cc13xx/cc26xx.ld b/arch/cpu/cc26xx-cc13xx/cc26xx.ld index 11bd9ca6f..46ecf1322 100644 --- a/arch/cpu/cc26xx-cc13xx/cc26xx.ld +++ b/arch/cpu/cc26xx-cc13xx/cc26xx.ld @@ -56,7 +56,7 @@ _estack = ORIGIN(SRAM) + LENGTH(SRAM); /* End of SRAM */ /*. Generate a link error if heap and stack don’t fit into RAM .*/ _Min_Heap_Size = 0; -_Min_Stack_Size = 0x100; +_Min_Stack_Size = 0x400; SECTIONS { diff --git a/examples/platform-specific/cc26xx/cc26xx-web-demo/project-conf.h b/examples/platform-specific/cc26xx/cc26xx-web-demo/project-conf.h index 43095dfe9..f007eb403 100644 --- a/examples/platform-specific/cc26xx/cc26xx-web-demo/project-conf.h +++ b/examples/platform-specific/cc26xx/cc26xx-web-demo/project-conf.h @@ -60,9 +60,9 @@ * Shrink the size of the uIP buffer, routing table and ND cache. * Set the TCP MSS */ -#define UIP_CONF_BUFFER_SIZE 900 -#define NETSTCK_ROUTING_STATE_SIZE 5 -#define NBR_TABLE_CONF_MAX_NEIGHBORS 5 +#define UIP_CONF_BUFFER_SIZE 500 +#define NETSTACK_MAX_ROUTE_ENTRIES 5 +#define NBR_TABLE_CONF_MAX_NEIGHBORS 5 #define UIP_CONF_TCP_MSS 128 /*---------------------------------------------------------------------------*/ #endif /* PROJECT_CONF_H_ */