You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
365 B
C
23 lines
365 B
C
/**
|
|
* @file random.h
|
|
* Provides true random number generation functionality
|
|
*/
|
|
|
|
#ifndef RANDOM_H_
|
|
#define RANDOM_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* Initializes the STM's true random number generator.
|
|
*/
|
|
void random_init(void);
|
|
|
|
/**
|
|
* Gets the next random number from the generator.
|
|
* @return the random number
|
|
*/
|
|
uint32_t random_get(void);
|
|
|
|
#endif // RANDOM_H_
|