Files
checker_slave/source/rt_thread/core_delay.h
ranchuan bcbd02a72c V2.13 使用新的can帧回复数据
解决ew自检模式 8导致小板死机的bug,自检返回值除以400,单位0.1ms
2024-01-08 18:04:05 +08:00

27 lines
255 B
C

#ifndef __CORE_DELAY_H
#define __CORE_DELAY_H
#include "stdint.h"
#include "stdbool.h"
int delay_init(void);
void delay_us(uint32_t us);
uint32_t delay_get_us(void);
int delay_check(uint32_t old,uint32_t wnd);
#endif /* __CORE_DELAY_H */