/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file Examples_LL/RNG/RNG_GenerateRandomNumbers/Src/main.c * @author MCD Application Team * @brief This example describes how to use RNG peripheral for generating random * numbers using the STM32WLxx RNG LL API. * Peripheral initialization done using LL unitary services functions. ****************************************************************************** * @attention * * Copyright (c) 2020 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* USER CODE END Header */ /* Includes ------------------------------------------------------------------*/ #include "main.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ /* USER CODE BEGIN PTD */ /* USER CODE END PTD */ /* Private define ------------------------------------------------------------*/ /* USER CODE BEGIN PD */ #if (USE_TIMEOUT == 1) #define RNG_GENERATION_TIMEOUT 20 #endif /* USE_TIMEOUT */ #define NB_OF_GENERATED_RANDOM_NUMBERS 8 /* Nb of Random numbers generated after eash User button press */ /* USER CODE END PD */ /* Private macro -------------------------------------------------------------*/ /* USER CODE BEGIN PM */ /* USER CODE END PM */ /* Private variables ---------------------------------------------------------*/ /* USER CODE BEGIN PV */ #if (USE_TIMEOUT == 1) uint32_t Timeout = 0; /* Variable used for Timeout management */ #endif /* USE_TIMEOUT */ __IO uint8_t ubButtonPress = 0; /* Array used for storing generated Random 32bit Numbers */ __IO uint32_t aRandom32bit[NB_OF_GENERATED_RANDOM_NUMBERS]; /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ void SystemClock_Config(void); static void MX_GPIO_Init(void); static void MX_RNG_Init(void); /* USER CODE BEGIN PFP */ void RandomNumbersGeneration(void); void LED_Init(void); void LED_On(void); void LED_Blinking(uint32_t Period); void UserButton_Init(void); void WaitForUserButtonPress(void); /* USER CODE END PFP */ /* Private user code ---------------------------------------------------------*/ /* USER CODE BEGIN 0 */ /* USER CODE END 0 */ /** * @brief The application entry point. * @retval int */ int main(void) { /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ /* MCU Configuration--------------------------------------------------------*/ /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ /* System interrupt init*/ NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ /* Initialize all configured peripherals */ MX_GPIO_Init(); MX_RNG_Init(); /* USER CODE BEGIN 2 */ /* Wait for User push-button press to trigger random numbers generation */ WaitForUserButtonPress(); /* Generate Random Numbers series */ RandomNumbersGeneration(); /* USER CODE END 2 */ /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ } /* USER CODE END 3 */ } /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { LL_FLASH_SetLatency(LL_FLASH_LATENCY_2); while(LL_FLASH_GetLatency() != LL_FLASH_LATENCY_2) { } LL_PWR_SetRegulVoltageScaling(LL_PWR_REGU_VOLTAGE_SCALE1); LL_RCC_MSI_Enable(); /* Wait till MSI is ready */ while(LL_RCC_MSI_IsReady() != 1) { } LL_RCC_MSI_EnableRangeSelection(); LL_RCC_MSI_SetRange(LL_RCC_MSIRANGE_11); LL_RCC_MSI_SetCalibTrimming(0); LL_RCC_PLL_ConfigDomain_RNG(LL_RCC_PLLSOURCE_MSI, LL_RCC_PLLM_DIV_4, 8, LL_RCC_PLLQ_DIV_2); LL_RCC_PLL_EnableDomain_RNG(); LL_RCC_PLL_Enable(); /* Wait till PLL is ready */ while(LL_RCC_PLL_IsReady() != 1) { } LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_MSI); /* Wait till System clock is ready */ while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_MSI) { } LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1); LL_RCC_SetAHB3Prescaler(LL_RCC_SYSCLK_DIV_1); LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_1); LL_RCC_SetAPB2Prescaler(LL_RCC_APB2_DIV_1); LL_Init1msTick(48000000); /* Update CMSIS variable (which can be updated also through SystemCoreClockUpdate function) */ LL_SetSystemCoreClock(48000000); } /** * @brief RNG Initialization Function * @param None * @retval None */ static void MX_RNG_Init(void) { /* USER CODE BEGIN RNG_Init 0 */ /* USER CODE END RNG_Init 0 */ LL_RCC_SetRNGClockSource(LL_RCC_RNG_CLKSOURCE_PLL); /* Peripheral clock enable */ LL_AHB3_GRP1_EnableClock(LL_AHB3_GRP1_PERIPH_RNG); /* USER CODE BEGIN RNG_Init 1 */ /* USER CODE END RNG_Init 1 */ LL_RNG_Enable(RNG); /* USER CODE BEGIN RNG_Init 2 */ /* USER CODE END RNG_Init 2 */ } /** * @brief GPIO Initialization Function * @param None * @retval None */ static void MX_GPIO_Init(void) { LL_EXTI_InitTypeDef EXTI_InitStruct = {0}; LL_GPIO_InitTypeDef GPIO_InitStruct = {0}; /* GPIO Ports Clock Enable */ LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOB); LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOA); /**/ LL_GPIO_ResetOutputPin(LED2_GPIO_Port, LED2_Pin); /**/ GPIO_InitStruct.Pin = LED2_Pin; GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT; GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; LL_GPIO_Init(LED2_GPIO_Port, &GPIO_InitStruct); /**/ LL_SYSCFG_SetEXTISource(LL_SYSCFG_EXTI_PORTA, LL_SYSCFG_EXTI_LINE0); /**/ EXTI_InitStruct.Line_0_31 = LL_EXTI_LINE_0; EXTI_InitStruct.Line_32_63 = LL_EXTI_LINE_NONE; EXTI_InitStruct.LineCommand = ENABLE; EXTI_InitStruct.Mode = LL_EXTI_MODE_IT; EXTI_InitStruct.Trigger = LL_EXTI_TRIGGER_FALLING; LL_EXTI_Init(&EXTI_InitStruct); /**/ LL_GPIO_SetPinPull(USER_BUTTON_GPIO_Port, USER_BUTTON_Pin, LL_GPIO_PULL_UP); /**/ LL_GPIO_SetPinMode(USER_BUTTON_GPIO_Port, USER_BUTTON_Pin, LL_GPIO_MODE_INPUT); /* EXTI interrupt init*/ NVIC_SetPriority(EXTI0_IRQn, NVIC_EncodePriority(NVIC_GetPriorityGrouping(),0, 0)); NVIC_EnableIRQ(EXTI0_IRQn); } /* USER CODE BEGIN 4 */ /** * @brief This function performs several random numbers generation. * @note Generated random numbers are stored in global variable array, so that * generated values could be observed by user by watching variable content * in specific debugger window * @param None * @retval None */ void RandomNumbersGeneration(void) { register uint8_t index = 0; /* Initialize random numbers generation */ LL_RNG_Enable(RNG); /* Generate Random 32bit Numbers */ for(index = 0; index < NB_OF_GENERATED_RANDOM_NUMBERS; index++) { #if (USE_TIMEOUT == 1) Timeout = RNG_GENERATION_TIMEOUT; #endif /* USE_TIMEOUT */ /* Wait for DRDY flag to be raised */ while (!LL_RNG_IsActiveFlag_DRDY(RNG)) { #if (USE_TIMEOUT == 1) /* Check Systick counter flag to decrement the time-out value */ if (LL_SYSTICK_IsActiveCounterFlag()) { if(Timeout-- == 0) { /* Time-out occurred. Set LED to blinking mode */ LED_Blinking(LED_BLINK_SLOW); } } #endif /* USE_TIMEOUT */ } /* Check if error occurs */ if ( (LL_RNG_IsActiveFlag_CECS(RNG) ) || (LL_RNG_IsActiveFlag_SECS(RNG)) ) { /* Clock or Seed Error detected. Set LED to blinking mode (Error type)*/ LED_Blinking(LED_BLINK_ERROR); } /* Otherwise, no error detected : Value of generated random number could be retrieved and stored in dedicated array */ aRandom32bit[index] = LL_RNG_ReadRandData32(RNG); } /* Stop random numbers generation */ LL_RNG_Disable(RNG); /* Values of Generated Random numbers are now available in aRandom32bit array. LED2 is turned on */ LED_On(); } /** * @brief Turn-on LED2. * @param None * @retval None */ void LED_On(void) { /* Turn LED2 on */ LL_GPIO_SetOutputPin(LED2_GPIO_Port, LED2_Pin); } /** * @brief Set LED2 to Blinking mode for an infinite loop (toggle period based on value provided as input parameter). * @param Period : Period of time (in ms) between each toggling of LED * This parameter can be user defined values. Pre-defined values used in that example are : * @arg LED_BLINK_FAST : Fast Blinking * @arg LED_BLINK_SLOW : Slow Blinking * @arg LED_BLINK_ERROR : Error specific Blinking * @retval None */ void LED_Blinking(uint32_t Period) { /* Toggle LED2 in an infinite loop */ while (1) { LL_GPIO_TogglePin(LED2_GPIO_Port, LED2_Pin); LL_mDelay(Period); } } /** * @brief Wait for User push-button (B1) press to start transfer. * @param None * @retval None */ /* */ void WaitForUserButtonPress(void) { while (ubButtonPress == 0) { LL_GPIO_TogglePin(LED2_GPIO_Port, LED2_Pin); LL_mDelay(LED_BLINK_FAST); } /* Turn LED2 off */ LL_GPIO_ResetOutputPin(LED2_GPIO_Port, LED2_Pin); } /******************************************************************************/ /* IRQ HANDLER TREATMENT Functions */ /******************************************************************************/ /** * @brief Function to manage User push-button (B1) * @param None * @retval None */ void UserButton_Callback(void) { /* Update User push-button (B1) variable : to be checked in waiting loop in main program */ ubButtonPress = 1; } /* USER CODE END 4 */ /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ /* USER CODE END Error_Handler_Debug */ } #ifdef USE_FULL_ASSERT /** * @brief Reports the name of the source file and the source line number * where the assert_param error has occurred. * @param file: pointer to the source file name * @param line: assert_param error line source number * @retval None */ void assert_failed(uint8_t *file, uint32_t line) { /* USER CODE BEGIN 6 */ /* User can add his own implementation to report the file name and line number, ex: printf("Wrong parameters value: file %s on line %d", file, line) */ /* Infinite loop */ while (1) { } /* USER CODE END 6 */ } #endif /* USE_FULL_ASSERT */