Wakeup Light with touch user interface, anti-aliased Font, SD card access and RTC usage on STM32F746NG-DISCO board

Dependencies:   BSP_DISCO_F746NG_patch_fixed LCD_DISCO_F746NG TS_DISCO_F746NG FATFileSystem TinyJpgDec_interwork mbed-src

Embed: (wiki syntax)

« Back to documentation index

TM_RNG_Functions

TM_RNG_Functions
[TM_RNG]

Library Functions. More...

Functions

void TM_RNG_Init (void)
 Initializes RNG peripheral and enables clock.
void TM_RNG_DeInit (void)
 De initializes RNG peripheral and disables clock.
uint32_t TM_RNG_Get (void)
 Gets 32-bit random number.

Detailed Description

Library Functions.


Function Documentation

void TM_RNG_DeInit ( void   )

De initializes RNG peripheral and disables clock.

Parameters:
None
Return values:
None

Definition at line 29 of file tm_stm32_rng.c.

uint32_t TM_RNG_Get ( void   )

Gets 32-bit random number.

Parameters:
None
Return values:
32-bitrandom number

Definition at line 37 of file tm_stm32_rng.c.

void TM_RNG_Init ( void   )

Initializes RNG peripheral and enables clock.

Parameters:
None
Return values:
NoneInitializes RNG peripheral and enables clock.

| | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. | | You should have received a copy of the GNU General Public License | along with this program. If not, see <http://www.gnu.org/licenses/>. |----------------------------------------------------------------------

Definition at line 21 of file tm_stm32_rng.c.