BackLight.h 656 Bytes
Newer Older
时昊's avatar
时昊 committed
1 2 3 4 5
#ifndef _BACKLIGHT_H_
#define _BACKLIGHT_H_



时昊's avatar
时昊 committed
6 7 8 9
#ifdef Platform_16Bit
    #define Light_uint8_t  unsigned char
    #define Light_uint16_t unsigned int
    #define Light_uint32_t unsigned long
时昊's avatar
时昊 committed
10

时昊's avatar
时昊 committed
11 12 13 14 15
#else
    #define Light_uint8_t  unsigned char
    #define Light_uint16_t unsigned short
    #define Light_uint32_t unsigned int
    #define Light_uint64_t unsigned long long
时昊's avatar
时昊 committed
16 17 18 19

#endif


时昊's avatar
时昊 committed
20 21 22
#ifndef Backlight_NULL
    #define Backlight_NULL ( void * )0u
#endif /* NULL */
时昊's avatar
时昊 committed
23

24
extern Light_uint16_t LightR_Status ;
时昊's avatar
时昊 committed
25
void Backlight_KL30_Wakeup_Init(void);
时昊's avatar
时昊 committed
26
void BackLight_Process(void);
27
Light_uint8_t Backlight_SetPwmLevel(void);
28
extern void BackLight_Service(void);
时昊's avatar
时昊 committed
29 30 31



32
#endif