1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef TELLTALES_USER_H
#define TELLTALES_USER_H
typedef enum
{
em_LED_High_Beam,
em_LED_FAULT_ELECTROSPRAY,
em_LED_ABS,
em_LED_Oil_Pressure,
em_LED_Fuel,
em_LED_Coolant,
em_LED_Bluetooth,
em_LED_TCS,
em_LED_Auto_Start_Stop,
//em_LED_Keys,
em_LED_Maintain,
em_LED_Low_Batt_Vol,
em_LED_Lateral_Strut,
em_LED_Tire_Pressure_Alarm,
//em_LED_Navigator,
LED_Max ,
} LED_Idx_t;
// typedef struct
// {
// //Tellib_uint8_t LED_Turnon;
// //Tellib_uint8_t LED_Turnoff;
// }Led_HighBeam_Count;
// extern Led_HighBeam_Count HighBeam_Timer;
void Telltales_Init(void);
void Telltales_UserInit(void);
void Turn_Left_Right_Lamp(void);
#endif