iwdg.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file iwdg.c
  5. * @brief This file provides code for the configuration
  6. * of the IWDG instances.
  7. ******************************************************************************
  8. * @attention
  9. *
  10. * Copyright (c) 2025 STMicroelectronics.
  11. * All rights reserved.
  12. *
  13. * This software is licensed under terms that can be found in the LICENSE file
  14. * in the root directory of this software component.
  15. * If no LICENSE file comes with this software, it is provided AS-IS.
  16. *
  17. ******************************************************************************
  18. */
  19. /* USER CODE END Header */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "iwdg.h"
  22. /* USER CODE BEGIN 0 */
  23. /* USER CODE END 0 */
  24. IWDG_HandleTypeDef hiwdg;
  25. /* IWDG init function */
  26. void MX_IWDG_Init(void)
  27. {
  28. /* USER CODE BEGIN IWDG_Init 0 */
  29. /* USER CODE END IWDG_Init 0 */
  30. /* USER CODE BEGIN IWDG_Init 1 */
  31. /* USER CODE END IWDG_Init 1 */
  32. hiwdg.Instance = IWDG;
  33. hiwdg.Init.Prescaler = IWDG_PRESCALER_32;
  34. hiwdg.Init.Window = 999;
  35. hiwdg.Init.Reload = 999;
  36. if (HAL_IWDG_Init(&hiwdg) != HAL_OK)
  37. {
  38. Error_Handler();
  39. }
  40. /* USER CODE BEGIN IWDG_Init 2 */
  41. /* USER CODE END IWDG_Init 2 */
  42. }
  43. /* USER CODE BEGIN 1 */
  44. void iwdg_feed(void)
  45. {
  46. HAL_IWDG_Refresh(&hiwdg);
  47. }
  48. /* USER CODE END 1 */