Car/Service/Inc/block_detect.h

15 lines
229 B
C
Raw Permalink Normal View History

2024-07-20 10:44:59 +08:00
#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