123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /*!
- * @file apm32f0xx_wwdt.h
- *
- * @brief This file contains all the functions prototypes for the WWDG firmware library
- *
- * @version V1.0.2
- *
- * @date 2022-02-21
- *
- * @attention
- *
- * Copyright (C) 2020-2022 Geehy Semiconductor
- *
- * You may not use this file except in compliance with the
- * GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE).
- *
- * The program is only for reference, which is distributed in the hope
- * that it will be useful and instructional for customers to develop
- * their software. Unless required by applicable law or agreed to in
- * writing, the program is distributed on an "AS IS" BASIS, WITHOUT
- * ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied.
- * See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions
- * and limitations under the License.
- */
- #ifndef __APM32F0XX_WWDT_H
- #define __APM32F0XX_WWDT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "apm32f0xx.h"
- /** @addtogroup APM32F0xx_StdPeriphDriver
- @{
- */
- /** @addtogroup WWDT_Driver WWDT Driver
- @{
- */
- /** @defgroup WWDT_Macros Macros
- @{
- */
- /**@} end of group WWDT_Macros */
- /** @defgroup WWDT_Enumerations Enumerations
- @{
- */
- /**
- * @brief WWDT Timebase(Prescaler) define
- */
- typedef enum
- {
- WWDT_DIV_1 = ((uint8_t)0x00),
- WWDT_DIV_2 = ((uint8_t)0x01),
- WWDT_DIV_4 = ((uint8_t)0x02),
- WWDT_DIV_8 = ((uint8_t)0x03)
- } WWDT_DIV_T;
- /**@} end of group WWDT_Enumerations*/
- /** @defgroup WWDT_Structures Structures
- @{
- */
- /**@} end of group WWDT_Structures */
- /** @defgroup WWDT_Variables Variables
- @{
- */
- /**@} end of group WWDT_Variables */
- /** @defgroup WWDT_Functions Functions
- @{
- */
- /* WWDT reset */
- void WWDT_Reset(void);
- /* Set WWDT Timebase */
- void WWDT_SetTimebase(uint32_t div);
- /* Set Window Data */
- void WWDT_ConfigWindowValue(uint16_t windowValue);
- /* Set Couter */
- void WWDT_ConfigCounter(uint8_t couter);
- /* Enable WWDT and Early Wakeup interrupt */
- void WWDT_EnableEWI(void);
- void WWDT_Enable(uint8_t count);
- /* Read Flag and Clear Flag */
- uint8_t WWDT_ReadStatusFlag(void);
- void WWDT_ClearStatusFlag(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __APM32F0XX_WWDT_H */
- /**@} end of group WWDT_Functions */
- /**@} end of group WWDT_Driver */
- /**@} end of group APM32F0xx_StdPeriphDriver */
|