Skip to content
Snippets Groups Projects
Unverified Commit c3cc0101 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #10024 from miri64/tests/fix/gnrc_sixlowpan-test-stacksize

tests/gnrc_sixlowpan: fix stacksize of dummy device
parents 1f2985df 925b9c64
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
#define IEEE802154_MAX_FRAG_SIZE (102)
static char _netif_stack[THREAD_STACKSIZE_SMALL];
static char _netif_stack[THREAD_STACKSIZE_DEFAULT];
static netdev_test_t _ieee802154_dev;
static int _get_netdev_device_type(netdev_t *netdev, void *value, size_t max_len)
......@@ -80,7 +80,7 @@ static void _init_interface(void)
netdev_test_set_get_cb(&_ieee802154_dev, NETOPT_SRC_LEN,
_get_netdev_src_len);
netif = gnrc_netif_ieee802154_create(
_netif_stack, THREAD_STACKSIZE_SMALL, GNRC_NETIF_PRIO,
_netif_stack, THREAD_STACKSIZE_DEFAULT, GNRC_NETIF_PRIO,
"dummy_netif", (netdev_t *)&_ieee802154_dev);
ipv6_addr_t addr = IPV6_ADDR_UNSPECIFIED;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment