root/platform/s2is/platform_kbd.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef PLATFORM_KBD_H
   2 #define PLATFORM_KBD_H
   3 // plaform specific keyboard defines, see core/kbd_common.c for documentation
   4 // platform code handles getting / updating key state, very different from other platforms
   5 #define KBD_CUSTOM_UPDATE_KEY_STATE 1
   6 
   7 #define KEYS_MASK0 (0x00000003)
   8 #define KEYS_MASK1 (0x5f7f7038)
   9 #define KEYS_MASK2 (0x00000000)
  10 
  11 #define SD_READONLY_FLAG (0x20000)
  12 #define SD_READONLY_IDX 0
  13 
  14 // NOTE get_usb_bit uses physw_status bit, so USB remote sync will NOT work
  15 #define USB_MASK (8) 
  16 #define USB_IDX  2
  17 
  18 #define KBD_ZOOM_FOR_MF_USE_MF_KEY 1
  19 #endif

/* [<][>][^][v][top][bottom][index][help] */