mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-19 13:18:32 +02:00
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>
18 lines
339 B
C
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 */
|