Lcd_msg.h
上传用户:xmyjxjd
上传日期:2013-05-04
资源大小:1517k
文件大小:2k
开发平台:

C/C++

  1. // These are common messages.
  2. // You can define other messages for your need, but you should confirm 
  3. // your OSD process can respond with your messages.
  4. #define NOTIFY_NONE         0x00
  5. #define NOTIFY_MENU_KEY     0x01
  6. #define NOTIFY_ENTER_KEY    0x02
  7. #define NOTIFY_RIGHT_KEY    0x03
  8. #define NOTIFY_LEFT_KEY     0x04
  9. //echo modify begin ... 2004.03.17
  10.   #define NOTIFY_AUTO_KEY     0x05
  11. //echo modify end;
  12. #define NOTIFY_EXIT_KEY     0x06
  13. #define NOTIFY_LR_KEY       0x08    // Issued when no OSD on display and an user presses left and right key
  14. #define NOTIFY_FACTORY_KEY  0x09  //anson
  15. #define NOTIFY_IR_NUM0      0x10
  16. #define NOTIFY_IR_NUM1      0x11
  17. #define NOTIFY_IR_NUM2      0x12
  18. #define NOTIFY_IR_NUM3      0x13
  19. #define NOTIFY_IR_NUM4      0x14
  20. #define NOTIFY_IR_NUM5      0x15
  21. #define NOTIFY_IR_NUM6      0x16
  22. #define NOTIFY_IR_NUM7      0x17
  23. #define NOTIFY_IR_NUM8      0x18
  24. #define NOTIFY_IR_NUM9      0x19
  25. #define NOTIFY_IR_SOURCE    0x1a
  26. #define NOTIFY_IR_DISP      0x1b
  27. #define NOTIFY_IR_JUMP      0x1c
  28. #define NOTIFY_IR_CHDEC     0x1d
  29. #define NOTIFY_IR_CHINC     0x1e
  30. #define NOTIFY_IR_VOLINC    0x1f
  31. #define NOTIFY_IR_VOLDEC    0x20
  32. #define NOTIFY_IR_MENU      0x21
  33. #define NOTIFY_IR_ENTER     0x22
  34. #define NOTIFY_IR_MUTE      0x23
  35. #define NOTIFY_POWERUP      0x80
  36. #define NOTIFY_POWERDOWN    0x81
  37. #define NOTIFY_CLEAR_OSD    0x82
  38. #define NOTIFY_SHOW         0x83    // Issued by main program, not by Key_Trans()
  39. // Key_Trans() issues the first message for a button right after you press it.
  40. // If you keep pressing a button down for (KEY_REPEAT_COUNT * 20ms), Key_Trans() will
  41. // issues the same messages in the period of (KEY_REPEAT_PERIOD * 20ms).
  42. // Not all keys need this feature. You should decide by yourself.
  43. #define KEY_REPEAT_COUNT    15
  44. #define KEY_REPEAT_PERIOD   1
  45. #define KEY_TURBO_ENABLE    15
  46. #ifdef __MESSAGE__
  47. unsigned char idata ucKey_Issued    = 0;
  48. bit bKeyTurbo   = 0; //anson
  49. unsigned char Key_Trans();
  50. void OSD_Dispatcher(unsigned char message);
  51. #else
  52. extern unsigned char idata  ucKey_Issued;
  53. extern bit bKeyTurbo; //anson
  54. extern unsigned char Key_Trans();
  55. extern void OSD_Dispatcher(unsigned char message);
  56. #endif