1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #11123 from miri64/gnrc_netif/enh/queue-size

gnrc_netif: increase message queue size
This commit is contained in:
Semjon Kerner 2019-03-15 12:45:33 +01:00 committed by GitHub
commit 112e9fcb69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -22,9 +22,5 @@ RAM_START_ADDR ?= 0x20000000
LINKER_SCRIPT ?= cortexm.ld
ifneq (,$(filter nrf802154,$(USEMODULE)))
CFLAGS += -DGNRC_NETIF_MSG_QUEUE_SIZE=16
endif
include $(RIOTCPU)/nrf5x_common/Makefile.include
include $(RIOTMAKE)/arch/cortexm.inc.mk

View File

@ -54,7 +54,7 @@ extern "C" {
* changed.
*/
#ifndef GNRC_NETIF_MSG_QUEUE_SIZE
#define GNRC_NETIF_MSG_QUEUE_SIZE (8U)
#define GNRC_NETIF_MSG_QUEUE_SIZE (16U)
#endif
/**