mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
sys/auto_init: added initialization for Skald
This commit is contained in:
parent
49bd85d00a
commit
6efb06f108
@ -80,6 +80,10 @@
|
||||
#include "net/gnrc/ipv6/nib.h"
|
||||
#endif
|
||||
|
||||
#ifdef MODULE_SKALD
|
||||
#include "net/skald.h"
|
||||
#endif
|
||||
|
||||
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
@ -151,6 +155,10 @@ void auto_init(void)
|
||||
DEBUG("Auto init gnrc_ipv6_nib module.\n");
|
||||
gnrc_ipv6_nib_init();
|
||||
#endif
|
||||
#ifdef MODULE_SKALD
|
||||
DEBUG("Auto init Skald\n");
|
||||
skald_init();
|
||||
#endif
|
||||
|
||||
/* initialize network devices */
|
||||
#ifdef MODULE_AUTO_INIT_GNRC_NETIF
|
||||
|
Loading…
Reference in New Issue
Block a user