Increased default number of queue buffers

This commit is contained in:
adamdunkels 2009-10-19 21:28:59 +00:00
parent 4d9b05c2ce
commit a5ea7ef966
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* $Id: queuebuf.c,v 1.14 2009/03/12 21:58:21 adamdunkels Exp $ * $Id: queuebuf.c,v 1.15 2009/10/19 21:28:59 adamdunkels Exp $
*/ */
/** /**
@ -50,7 +50,7 @@
#ifdef QUEUEBUF_CONF_NUM #ifdef QUEUEBUF_CONF_NUM
#define QUEUEBUF_NUM QUEUEBUF_CONF_NUM #define QUEUEBUF_NUM QUEUEBUF_CONF_NUM
#else #else
#define QUEUEBUF_NUM 4 #define QUEUEBUF_NUM 8
#endif #endif
#ifdef QUEUEBUF_CONF_REF_NUM #ifdef QUEUEBUF_CONF_REF_NUM