1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/auto_init: added initialization of ng_udp

This commit is contained in:
haukepetersen 2015-04-24 15:08:36 +02:00 committed by Hauke Petersen
parent b1d8752711
commit 1441e2fd02

View File

@ -98,6 +98,10 @@
#include "net/ng_pktdump.h"
#endif
#ifdef MODULE_NG_UDP
#include "net/ng_udp.h"
#endif
#define ENABLE_DEBUG (0)
#include "debug.h"
@ -296,4 +300,8 @@ void auto_init(void)
DEBUG("Auto init ng_ipv6 module.\n");
ng_ipv6_init();
#endif
#ifdef MODULE_NG_UDP
DEBUG("Auto init UDP module.\n");
ng_udp_init();
#endif
}