mirror of
https://github.com/gosticks/RIOT.git
synced 2025-10-16 12:05:37 +00:00
tests/rng: Clean up includes
This commit is contained in:
parent
47bbeb8969
commit
2bf1068c72
@ -19,6 +19,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,20 @@
|
|||||||
* directory for more details.
|
* directory for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <math.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
||||||
|
#include "fmt.h"
|
||||||
|
#include "random.h"
|
||||||
|
#include "xtimer.h"
|
||||||
|
|
||||||
|
#ifdef MODULE_PERIPH_HWRNG
|
||||||
|
#include "periph/hwrng.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Seed for initializing random module.
|
* @brief Seed for initializing random module.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -9,17 +9,7 @@
|
|||||||
#ifndef TEST_H
|
#ifndef TEST_H
|
||||||
#define TEST_H
|
#define TEST_H
|
||||||
|
|
||||||
#include <math.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#include "fmt.h"
|
|
||||||
#include "random.h"
|
|
||||||
#include "xtimer.h"
|
|
||||||
|
|
||||||
#ifdef MODULE_PERIPH_HWRNG
|
|
||||||
#include "periph/hwrng.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user