You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
728 B

3 weeks ago
/*
* Timer.h
*
* Created on: Feb 28, 2025
* Author: bihon
*/
#ifndef INC_TIMER_H_
#define INC_TIMER_H_
#include <stdint.h>
/**
* @brief
* @param set_time ms
* @param stop_perm 0 1
* @note 2ms set_time / 2
*/
uint8_t Timer_Set(uint16_t set_time, uint8_t stop_perm);
/**
* @brief
* @return 1 0
*/
uint8_t Timer_Start_Count();
/**
* @brief
*/
void Timer_Stop_Count();
#endif /* INC_TIMER_H_ */