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

Auto init destiny

This commit is contained in:
Martin Lenders 2014-01-16 16:41:07 +01:00 committed by Martin Lenders
parent 683a078515
commit 2cf0d02c5e

View File

@ -55,6 +55,10 @@
#include "rtc.h"
#endif
#ifdef MODULE_DESTINY
#include "destiny.h"
#endif
#define ENABLE_DEBUG (0)
#include "debug.h"
@ -105,5 +109,10 @@ void auto_init(void)
extern void profiling_init(void);
profiling_init();
#endif
#ifdef MODULE_DESTINY
DEBUG("Auto init transport layer [destiny] module.\n");
destiny_init_transport_layer();
#endif
main();
}