Data_Gear.h 507 Bytes
Newer Older
罗洪旭's avatar
罗洪旭 committed
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
#ifndef _DATA_GEAR_H_
#define _DATA_GEAR_H_

typedef enum
{
    GEAR_NONE,
    GEAR_1,
    GEAR_2,
    GEAR_3,
    GEAR_4,
    GEAR_5,
    GEAR_6,
    GEAR_7,
    GEAR_8,
} Data_Gear_Number;

typedef enum
{
    GEAR_NULL,
    GEAR_N,
    GEAR_F,
    GEAR_R,
} Data_Gear_Direction;

extern void        Data_Gear_KL30_Wakeup_Init(void);
extern void        Data_Gear_Service_Processing(void);
extern Data_Gear_Number Get_Gear_Disp_Nmber(void);
extern Data_Gear_Direction Get_Gear_Disp_Direction(void);

#endif