summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/rng.c
blob: 20d840a6a5bf261205538845a4af1e01d8bd7207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "stm32f4xx_hal.h"

#include "misc.h"
#include "mpconfig.h"
#include "qstr.h"
#include "obj.h"
#include "rng.h"

STATIC RNG_HandleTypeDef RngHandle;

void rng_init(void) {
    __RNG_CLK_ENABLE();
    RngHandle.Instance = RNG;
    HAL_RNG_Init(&RngHandle);
}

STATIC mp_obj_t pyb_rng_get(void) {
    return mp_obj_new_int(HAL_RNG_GetRandomNumber(&RngHandle) >> 2);
}

MP_DEFINE_CONST_FUN_OBJ_0(pyb_rng_get_obj, pyb_rng_get);