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

Merge pull request #8466 from smlng/native/add_hwrng_init

board/native: add periph_hwrng and init
parents 74d3255f d94edad1
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
#include <stdio.h>
#include "board.h"
#include "periph/rtc.h"
#include "periph/hwrng.h"
#include "board_internal.h"
......@@ -33,6 +34,9 @@ void board_init(void)
LED1_ON;
#ifdef MODULE_PERIPH_RTC
rtc_init();
#endif
#ifdef MODULE_PERIPH_HWRNG
hwrng_init();
#endif
puts("RIOT native board initialized.");
}
......
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