#ifndef __COMMONINFO_H_ #define __COMMONINFO_H_ typedef unsigned char U8; typedef unsigned short U16; typedef unsigned int U32; typedef signed char S8; typedef signed short S16; typedef signed int S32; #ifndef TRUE #define TRUE (1) #endif #ifndef FALSE #define FALSE (0) #endif #ifndef NULL #define NULL (0) #endif #define NRC_7F (0x7F) #define NRC_11 (0x11) #define NRC_12 (0x12) #define NRC_13 (0x13) #define SERVICE_10 (0x10) #define SERVICE_22 (0x22) #define VALUE_0 (0) #define VALUE_1 (1) #define VALUE_2 (2) #define VALUE_3 (3) #define VALUE_4 (4) #define VALUE_5 (5) #define VALUE_6 (6) #define VALUE_7 (7) #define VALUE_8 (8) #define VALUE_9 (9) #define VALUE_10 (10) #define VALUE_11 (11) #define VALUE_12 (12) #define VALUE_13 (13) #define VALUE_14 (14) #define VALUE_15 (15) #define VALUE_16 (16) #define VALUE_17 (17) #define VALUE_18 (18) #define VALUE_19 (19) #define VALUE_20 (20) #define VALUE_21 (21) #define INDEX_0 (0) #define INDEX_1 (1) #define INDEX_2 (2) #define INDEX_3 (3) #define INDEX_4 (4) #define INDEX_5 (5) #define INDEX_6 (6) #define INDEX_7 (7) #define INDEX_8 (8) #define BIT0 (0x00000001) #define BIT1 (0x00000002) #define BIT2 (0x00000004) #define BIT3 (0x00000008) #define BIT4 (0x00000010) #define BIT5 (0x00000020) #define BIT6 (0x00000040) #define BIT7 (0x00000080) #define BIT8 (0x00000100) #define BIT9 (0x00000200) #define BIT10 (0x00000400) #define BIT11 (0x00000800) #define BIT12 (0x00001000) #define BIT13 (0x00002000) #define BIT14 (0x00004000) #define BIT15 (0x00008000) #define HIGH (1) #define LOW (0) typedef enum { EN_SCREEN_CONFIGURATION_10_25 = 0, EN_SCREEN_CONFIGURATION_12_3 = 1, EN_SCREEN_CONFIGURATION_7_0, EN_SCREEN_CONFIGURATION_MAX, }EN_SCREEN_CONFIGURATION_TYPE; #endif