20 neighbors with status and routes

This commit is contained in:
harald42 2013-11-28 11:06:28 +01:00 committed by harald
parent 0a14fd6a18
commit d3eb7da297
2 changed files with 7 additions and 1 deletions

View file

@ -79,7 +79,7 @@ AUTOSTART_PROCESSES(&border_router_process,&webserver_nogui_process);
*/
#define WEBSERVER_CONF_LOADTIME 0
#define WEBSERVER_CONF_FILESTATS 0
#define WEBSERVER_CONF_NEIGHBOR_STATUS 0
#define WEBSERVER_CONF_NEIGHBOR_STATUS 1
/* Adding links requires a larger RAM buffer. To avoid static allocation
* the stack can be used for formatting; however tcp retransmissions
* and multiple connections can result in garbled segments.

View file

@ -35,6 +35,12 @@
#define UIP_FALLBACK_INTERFACE rpl_interface
#endif
/* Save some memory for the sky platform. */
#undef NBR_TABLE_CONF_MAX_NEIGHBORS
#define NBR_TABLE_CONF_MAX_NEIGHBORS 20
#undef UIP_CONF_MAX_ROUTES
#define UIP_CONF_MAX_ROUTES 20
#ifndef QUEUEBUF_CONF_NUM
#define QUEUEBUF_CONF_NUM 4
#endif