don't do a hard override of platform config in rpl project config
This commit is contained in:
parent
81552d1f6d
commit
ea527da162
|
@ -32,19 +32,24 @@
|
||||||
#ifndef __PROJECT_ROUTER_CONF_H__
|
#ifndef __PROJECT_ROUTER_CONF_H__
|
||||||
#define __PROJECT_ROUTER_CONF_H__
|
#define __PROJECT_ROUTER_CONF_H__
|
||||||
|
|
||||||
#undef UIP_FALLBACK_INTERFACE
|
#ifndef UIP_FALLBACK_INTERFACE
|
||||||
#define UIP_FALLBACK_INTERFACE rpl_interface
|
#define UIP_FALLBACK_INTERFACE rpl_interface
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef QUEUEBUF_CONF_NUM
|
#ifndef QUEUEBUF_CONF_NUM
|
||||||
#define QUEUEBUF_CONF_NUM 4
|
#define QUEUEBUF_CONF_NUM 4
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef UIP_CONF_BUFFER_SIZE
|
#ifndef UIP_CONF_BUFFER_SIZE
|
||||||
#define UIP_CONF_BUFFER_SIZE 140
|
#define UIP_CONF_BUFFER_SIZE 140
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef UIP_CONF_RECEIVE_WINDOW
|
#ifndef UIP_CONF_RECEIVE_WINDOW
|
||||||
#define UIP_CONF_RECEIVE_WINDOW 60
|
#define UIP_CONF_RECEIVE_WINDOW 60
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef WEBSERVER_CONF_CFS_CONNS
|
#ifndef WEBSERVER_CONF_CFS_CONNS
|
||||||
#define WEBSERVER_CONF_CFS_CONNS 2
|
#define WEBSERVER_CONF_CFS_CONNS 2
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __PROJECT_ROUTER_CONF_H__ */
|
#endif /* __PROJECT_ROUTER_CONF_H__ */
|
||||||
|
|
Loading…
Reference in a new issue