1.24.18.10 RNG_LoadGet Function

C

bool RNG_LoadGet (void);

Summary

Returns the LOAD bit value in RNGCON register.

Description

This function gets the LOAD bit in RNGCON register which triggers loading of the seed for PRNG from RNGSEEDx registers of the TRNG.

Precondition

RNG_Initialize must have been called before using this function.

Parameters

None.

Returns

LOAD bit value in RNGCON register.

Example

bool loadBitValue;
loadBitValue = RNG_LoadGet();

Remarks

None.