ud3tn/include/platform/hal_random.h
Felix Walter 0ce4bee910
Initial import of uPCN v0.8.0 source code
This is the initial commit for uD3TN. uD3TN is a fork of uPCN v0.8.0,
which will be developed and maintained in a public Git repository.

For questions concerning the history of and code provided with uPCN,
please get in touch with us via: contact <at> d3tn <dot> com

Signed-off-by: Felix Walter <felix.walter@d3tn.com>
2020-11-14 11:56:40 +01:00

18 lines
339 B
C

/*
* hal_random.h
*
* Description: contains the definitions of the hardware abstraction
* layer interface for random number generation functionality
*
*/
#ifndef HAL_RANDOM_H_INCLUDED
#define HAL_RANDOM_H_INCLUDED
#include <stdint.h>
void hal_random_init(void);
uint32_t hal_random_get(void);
#endif /* HAL_RANDOM_H_INCLUDED */