Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SystemPeripherals_IWDG.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef SYSTEMPERIPHERALS_IWDG_H
4#define SYSTEMPERIPHERALS_IWDG_H
5
7
8#include "SystemMemoryMap.h"
9
10// Determine if a C++ compiler is being used. If so, ensure that standard C is used to process the API information.
11#ifdef __cplusplus
12extern "C" {
13#endif // __cplusplus
14
24typedef enum {
25 IWDG_Prescaler_4 = ((uint32_t)0x00000000),
26 IWDG_Prescaler_8 = ((uint32_t)0x00000001),
27 IWDG_Prescaler_16 = ((uint32_t)0x00000002),
28 IWDG_Prescaler_32 = ((uint32_t)0x00000003),
29 IWDG_Prescaler_64 = ((uint32_t)0x00000004),
31 IWDG_Prescaler_256 = ((uint32_t)0x00000006)
33
37typedef struct {
38 // Specifies the prescaler divider value
40 // Specifies the Watchdog counter reload value, max: 0x0000 0FFF
43
48void IWDG_ConfigureAndStart(IWDG_InitStruct const* const pIwdgInitStruct);
49
55
56#ifdef __cplusplus
57}
58#endif // __cplusplus
59
60#endif // SYSTEMPERIPHERALS_IWDG_H
void IWDG_Reset()
Resets the Watchdog timer.
void IWDG_ConfigureAndStart(IWDG_InitStruct const *const pIwdgInitStruct)
IWDG init struct definition.
IWDG_Prescaler
Independent watchdog (IWDG)
@ IWDG_Prescaler_256
@ IWDG_Prescaler_32
@ IWDG_Prescaler_128
@ IWDG_Prescaler_16
@ IWDG_Prescaler_64
@ IWDG_Prescaler_8
@ IWDG_Prescaler_4
unsigned __int32 uint32_t
Definition stdint.h:64
IWDG init struct definition.