/* * Copyright (C) 2015 Jan Wagner * 2016 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup cpu_nrf52 * @{ * * @file * @brief Implementation of the hardware random number generator interface * * @author Hauke Petersen * @author Jan Wagner * * @} */ #include "cpu.h" #include "periph/hwrng.h" void hwrng_init(void) { /* nothing to do here */ } void hwrng_read(uint8_t *buf, unsigned int num) { unsigned int count = 0; NRF_RNG->TASKS_START = 1; while (count < num) { while (NRF_RNG->EVENTS_VALRDY == 0); NRF_RNG->EVENTS_VALRDY = 0; buf[count++] = (uint8_t)NRF_RNG->VALUE; } NRF_RNG->TASKS_STOP = 1; }