Skip to content
Snippets Groups Projects
Commit cab5524e authored by Torben Petersen's avatar Torben Petersen
Browse files

Changed IFace Selection for ibr-node. Works currently, might need fixing...

parent 894cdf04
No related branches found
No related tags found
No related merge requests found
......@@ -744,7 +744,12 @@ int main(void)
gnrc_netif_t *netif = NULL;
if((netif = gnrc_netif_iter(netif))) {
#if defined(BOARD_IBR_NODE)
netif = gnrc_netif_iter(netif);
#endif
gnrc_netif_t *ieee802154_netif = netif;
printf("Found gnrc netif: %d %d\n", netif->pid, ieee802154_netif->pid);
/// +2 -> INGA working, but TelosB/Sky not
send_thread_pid = thread_create(send_thread_stack, sizeof(send_thread_stack), THREAD_PRIORITY_MAIN + 2, THREAD_CREATE_STACKTEST, send_thread, ieee802154_netif, "send_thread");
......
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