⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 omap-keypad.h

📁 Linux Kernel 2.6.9 for OMAP1710
💻 H
字号:
/* * linux/drivers/input/keyboard/omap-keypad.h * * Copyright (C) 2004 Texas Instruments Inc * Author: TI * * Keypad header file * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * */#ifndef _KEYPAD_H#define KEYBOARD_BASE_ADDR    0xFFFBE000#define CTL                   0x00#define INT_EN                0x0C#define FC15_0                0xFFFBE014#define HW_DECODE             0x0003#define KBD_IF_IT             0x0001#define KBD_IF_IT_CLR         0x0000#undef NEW_BOARD_LEARNING_MODEstatic void omap_kp_tasklet(unsigned long);static void omap_kp_timer(unsigned long);static struct input_dev omap_kp_dev;static unsigned char keypad_state[8];static struct timer_list kp_timer;DECLARE_TASKLET_DISABLED(kp_tasklet, omap_kp_tasklet, 0);#define KEY(col, row, val) (((col) << 28) | ((row) << 24) | (val))#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -