You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
229 B
17 lines
229 B
8 years ago
|
//
|
||
|
// Created by MightyPork on 2017/09/16.
|
||
|
//
|
||
|
|
||
|
#ifndef FIRMWARE_RNG_H
|
||
|
#define FIRMWARE_RNG_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void rng_set_seed(uint32_t seed);
|
||
|
|
||
|
void rng_restart(void);
|
||
|
|
||
|
uint8_t rng_next_item(void);
|
||
|
|
||
|
#endif //FIRMWARE_RNG_H
|