1234567891011121314151617181920212223242526272829 |
- #ifndef __IRSIS_MAP_H__
- #define __IRSIS_MAP_H__
- #ifndef _DRIVER_INCLUDE
- #include "umf_ir.h"
- #endif
- //#include "types.h"
- /*******************************************************************************
- * struct
- ******************************************************************************/
- // ------------------------------------------------------------------------
- #ifndef CONFIG_SUPPORT_IR_FAC_REMOTE
- #ifndef IR_PROTOCOL_NEC
- #define IR_PROTOCOL_NEC
- #endif
- #endif
- #ifndef _DRIVER_INCLUDE
- #define IRSIS_POWERON_KEY_NUM 0x03 // must same with power on key number up to 14 keys
- #define IRSIS_POWERON_KEY \
- {IRSIS_POWERON_KEY_NUM, {0x09f60045, 0x09f60054, 0x09f6005a}},
- extern void IRSIS_EventConvert(unsigned int *pbEvent);
- UINT8 IRSIS_GetKeyCodeEvent(UINT32 cid, UINT8 u8Keycode, UINT32 * u32Event);
- #endif
- #endif
|