iwdg.c 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. ******************************************************************************
  3. * File Name : IWDG.c
  4. * Description : This file provides code for the configuration
  5. * of the IWDG instances.
  6. ******************************************************************************
  7. ** This notice applies to any and all portions of this file
  8. * that are not between comment pairs USER CODE BEGIN and
  9. * USER CODE END. Other portions of this file, whether
  10. * inserted by the user or by software development tools
  11. * are owned by their respective copyright owners.
  12. *
  13. * COPYRIGHT(c) 2019 STMicroelectronics
  14. *
  15. * Redistribution and use in source and binary forms, with or without modification,
  16. * are permitted provided that the following conditions are met:
  17. * 1. Redistributions of source code must retain the above copyright notice,
  18. * this list of conditions and the following disclaimer.
  19. * 2. Redistributions in binary form must reproduce the above copyright notice,
  20. * this list of conditions and the following disclaimer in the documentation
  21. * and/or other materials provided with the distribution.
  22. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  23. * may be used to endorse or promote products derived from this software
  24. * without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  29. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  32. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  33. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  34. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. ******************************************************************************
  38. */
  39. /* Includes ------------------------------------------------------------------*/
  40. #include "iwdg.h"
  41. /* USER CODE BEGIN 0 */
  42. /* USER CODE END 0 */
  43. /*
  44. 000: divider /4
  45. 001: divider /8
  46. 010: divider /16
  47. 011: divider /32
  48. 100: divider /64
  49. 101: divider /128
  50. 110: divider /256
  51. 111: divider /256
  52. */
  53. /* IWDG init function */
  54. void MX_IWDG_Init(void)
  55. {
  56. IWDG->KR = 0x5555; //允许写入 PR和 RLR
  57. IWDG->PR = 4; //分频64, 40 / 64 = 625
  58. IWDG->RLR = 0x09C4; //重装载2500 * 1.6ms = 4s
  59. IWDG->KR = 0xAAAA; //重装载
  60. IWDG->KR = 0xCCCC; //启动
  61. }
  62. void Iwdg_Refresh(void)
  63. {
  64. IWDG->KR = 0xAAAA; //重装载
  65. }
  66. /* USER CODE BEGIN 1 */
  67. /* USER CODE END 1 */
  68. /**
  69. * @}
  70. */
  71. /**
  72. * @}
  73. */
  74. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/