Car/App/Inc/app_line_seek.h

16 lines
236 B
C
Raw Permalink Normal View History

2024-07-14 21:03:50 +08:00
#ifndef __APP_LINE_SEEK_H
#define __APP_LINE_SEEK_H
2024-07-17 21:19:00 +08:00
#include "tim.h"
2024-07-20 10:44:59 +08:00
extern int beep_time;
2024-07-17 21:19:00 +08:00
void LineSeek_Init(void);
2024-07-20 10:44:59 +08:00
void LineSeek_Start(void);
void LineSeek_Stop(void);
2024-07-14 21:03:50 +08:00
void App_LineSeek(void);
2024-07-17 21:19:00 +08:00
void Hanlde_Crossroad(void);
2024-07-14 21:03:50 +08:00
2024-07-20 10:44:59 +08:00
#endif