17 lines
415 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __MW_SOFT_TIMER_H__
#define __MW_SOFT_TIMER_H__
#include "stdint.h"
// uint32_t get_systick_ms(void);
// void mw_soft_timer_user_systick_update(void);
void mw_softTimer_led_indicator_config(uint32_t period);
/**
* 函数定义: 获取LED工作状态指示灯的软件定时器是否超时。当读取为1的时候自动清0
*
*/
uint8_t mw_softTimer_get_led_indicator_timeUp_flag(void);
#endif