This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/drivers/lhal/include/bflb_wdg.h
2022-10-29 16:11:43 +08:00

53 lines
1.2 KiB
C

#ifndef _BFLB_WDG_H
#define _BFLB_WDG_H
#include "bflb_core.h"
#include "bflb_clock.h"
#define WDG_CLKSRC_BCLK 0
#define WDG_CLKSRC_32K 1
#define WDG_CLKSRC_1K 2
#define WDG_CLKSRC_XTAL 3
#define WDG_CLKSRC_GPIO 4
#define WDG_CLKSRC_NO 5
/** @defgroup WDG_MODE Watch-dog reset/interrupt mode definition
* @{
*/
#define WDG_MODE_INTERRUPT 0
#define WDG_MODE_RESET 1
/**
* @}
*/
/**
* @brief WDG configuration structure
*
* @param clock_source Wdg clock source, use BFLB_SYSTEM_* definition
* @param clock_div Wdg clock divison value, from 0 to 255
* @param comp_val Wdg compare value
* @param mode Wdg reset/interrupt mode
*/
struct bflb_wdg_config_s {
uint8_t clock_source;
uint8_t clock_div;
uint16_t comp_val;
uint8_t mode;
};
#ifdef __cplusplus
extern "C" {
#endif
void bflb_wdg_init(struct bflb_device_s *dev, const struct bflb_wdg_config_s *config);
void bflb_wdg_start(struct bflb_device_s *dev);
void bflb_wdg_stop(struct bflb_device_s *dev);
uint16_t bflb_wdg_get_countervalue(struct bflb_device_s *dev);
void bflb_wdg_reset_countervalue(struct bflb_device_s *dev);
void bflb_wdg_compint_clear(struct bflb_device_s *dev);
#ifdef __cplusplus
}
#endif
#endif