Car/Service/Inc/block_detect.h
2024-07-20 10:48:10 +08:00

15 lines
229 B
C

#ifndef __BLOCK_DETECT_H
#define __BLOCK_DETECT_H
// 定义障碍方向枚举
typedef enum
{
FRONT,
LEFT_FRONT,
RIGHT_FRONT
} BlockDirection;
void BlockDetect_Init();
int Has_Block(BlockDirection direction);
#endif