diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-03-27 21:48:13 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-03-27 21:48:13 +0000 |
commit | b9896eec712bfbeab915cd74d752e6b1b519015d (patch) | |
tree | 9308097ca546081cf7611d2d7d990e8f4bb9460e /sys/arch | |
parent | 819f6e00b1a87881d334c15f1fb3708e44fb18c7 (diff) |
add WSDISPLAY_COMPAT_RAWKBD support for macppc, not complete yet, Fx keys
are missing in translation table. Not enabled yet.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/dev/akbd.c | 76 | ||||
-rw-r--r-- | sys/arch/macppc/dev/akbdvar.h | 11 | ||||
-rw-r--r-- | sys/arch/macppc/dev/keyboard.h | 264 |
3 files changed, 215 insertions, 136 deletions
diff --git a/sys/arch/macppc/dev/akbd.c b/sys/arch/macppc/dev/akbd.c index 1d352be0277..32103ee8837 100644 --- a/sys/arch/macppc/dev/akbd.c +++ b/sys/arch/macppc/dev/akbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: akbd.c,v 1.3 2002/03/14 01:26:36 millert Exp $ */ +/* $OpenBSD: akbd.c,v 1.4 2002/03/27 21:48:12 drahn Exp $ */ /* $NetBSD: akbd.c,v 1.13 2001/01/25 14:08:55 tsubai Exp $ */ /* @@ -32,6 +32,8 @@ */ #include <sys/param.h> +#include <sys/timeout.h> +#include <sys/kernel.h> #include <sys/device.h> #include <sys/fcntl.h> #include <sys/poll.h> @@ -87,6 +89,8 @@ int akbd_enable(void *, int); void akbd_set_leds(void *, int); int akbd_ioctl(void *, u_long, caddr_t, int, struct proc *); int akbd_intr(adb_event_t *event); +void akbd_rawrepeat(void *v); + struct wskbd_accessops akbd_accessops = { akbd_enable, @@ -247,6 +251,11 @@ akbdattach(parent, self, aux) printf("akbd: returned %d from SetADBInfo\n", error); #endif +#ifdef WSDISPLAY_COMPAT_RAWKBD + timeout_set(&sc->sc_rawrepeat_ch, akbd_rawrepeat, sc); +#endif + + a.console = akbd_is_console; a.keymap = &akbd_keymapdata; a.accessops = &akbd_accessops; @@ -450,6 +459,7 @@ akbd_ioctl(v, cmd, data, flag, p) int flag; struct proc *p; { + struct akbd_softc *sc = v; switch (cmd) { case WSKBDIO_GTYPE: @@ -460,12 +470,37 @@ akbd_ioctl(v, cmd, data, flag, p) case WSKBDIO_GETLEDS: *(int *)data = 0; return 0; +#ifdef WSDISPLAY_COMPAT_RAWKBD + case WSKBDIO_SETMODE: + printf("akbd_ioctl: set raw = %d\n", *(int *)data); + /* + */ + sc->sc_rawkbd = *(int *)data == WSKBD_RAW; + timeout_del(&sc->sc_rawrepeat_ch); + return (0); +#endif + } /* kbdioctl(...); */ return -1; } +#ifdef WSDISPLAY_COMPAT_RAWKBD +void +akbd_rawrepeat(void *v) +{ + struct akbd_softc *sc = v; + int s; + + s = spltty(); + wskbd_rawinput(sc->sc_wskbddev, sc->sc_rep, sc->sc_nrep); + splx(s); + timeout_add(&sc->sc_rawrepeat_ch, hz * REP_DELAYN / 1000); +} +#endif + + static int polledkey; extern int adb_polling; @@ -475,6 +510,7 @@ akbd_intr(event) { int key, press, val; int type; + int s; struct akbd_softc *sc = akbd_cd.cd_devs[0]; @@ -502,10 +538,44 @@ akbd_intr(event) #endif } - if (adb_polling) + if (adb_polling) { polledkey = key; - else +#ifdef WSDISPLAY_COMPAT_RAWKBD + } else if (sc->sc_rawkbd) { + char cbuf[MAXKEYS *2]; + int c, j; + int npress; + + j = npress = 0; + + c = keyboard[val][3]; + if (c == 0) { + return 0; /* XXX */ + } + if (c & 0x80) + cbuf[j++] = 0xe0; + cbuf[j] = c & 0x7f; + if (type == WSCONS_EVENT_KEY_UP) { + cbuf[j] |= 0x80; + } else { + /* this only records last key pressed */ + if (c & 0x80) + sc->sc_rep[npress++] = 0xe0; + sc->sc_rep[npress++] = c & 0x7f; + } + j++; + s = spltty(); + wskbd_rawinput(sc->sc_wskbddev, cbuf, j); + splx(s); + timeout_del(&sc->sc_rawrepeat_ch); + sc->sc_nrep = npress; + if (npress != 0) + timeout_add(&sc->sc_rawrepeat_ch, hz * REP_DELAY1/1000); + return 0; +#endif + } else { wskbd_input(sc->sc_wskbddev, type, val); + } return 0; } diff --git a/sys/arch/macppc/dev/akbdvar.h b/sys/arch/macppc/dev/akbdvar.h index 50964ec27e4..2689d719931 100644 --- a/sys/arch/macppc/dev/akbdvar.h +++ b/sys/arch/macppc/dev/akbdvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: akbdvar.h,v 1.2 2002/03/14 01:26:36 millert Exp $ */ +/* $OpenBSD: akbdvar.h,v 1.3 2002/03/27 21:48:12 drahn Exp $ */ /* $NetBSD: akbdvar.h,v 1.4 1999/02/17 14:56:56 tsubai Exp $ */ /* @@ -49,6 +49,15 @@ struct akbd_softc { u_int8_t sc_leds; /* current LED state */ struct device *sc_wskbddev; +#ifdef WSDISPLAY_COMPAT_RAWKBD +#define MAXKEYS 20 +#define REP_DELAY1 400 +#define REP_DELAYN 100 + int sc_rawkbd; + int sc_nrep; + char sc_rep[MAXKEYS]; + struct timeout sc_rawrepeat_ch; +#endif /* defined(WSDISPLAY_COMPAT_RAWKBD) */ }; /* LED register bits, inverse of actual register value */ diff --git a/sys/arch/macppc/dev/keyboard.h b/sys/arch/macppc/dev/keyboard.h index 8b6c1d5d36a..35f63d1839b 100644 --- a/sys/arch/macppc/dev/keyboard.h +++ b/sys/arch/macppc/dev/keyboard.h @@ -1,4 +1,4 @@ -/* $OpenBSD: keyboard.h,v 1.1 2001/09/01 15:50:00 drahn Exp $ */ +/* $OpenBSD: keyboard.h,v 1.2 2002/03/27 21:48:12 drahn Exp $ */ /* $NetBSD: keyboard.h,v 1.1 1998/05/15 10:15:54 tsubai Exp $ */ /*- @@ -73,137 +73,137 @@ (((key) & 0x7f) == ADBK_OPTION)) #ifndef KEYBOARD_ARRAY -extern unsigned char keyboard[128][3]; +extern unsigned char keyboard[128][4]; #else -unsigned char keyboard[128][3] = { - /* Scan code Normal Shifted Controlled */ - { /* 0x00, */ 'a', 'A', 0x01 }, - { /* 0x01, */ 's', 'S', 0x13 }, - { /* 0x02, */ 'd', 'D', 0x04 }, - { /* 0x03, */ 'f', 'F', 0x06 }, - { /* 0x04, */ 'h', 'H', 0x08 }, - { /* 0x05, */ 'g', 'G', 0x07 }, - { /* 0x06, */ 'z', 'Z', 0x1A }, - { /* 0x07, */ 'x', 'X', 0x18 }, - { /* 0x08, */ 'c', 'C', 0x03 }, - { /* 0x09, */ 'v', 'V', 0x16 }, - { /* 0x0A, */ 0x00, 0x00, 0x00 }, - { /* 0x0B, */ 'b', 'B', 0x02 }, - { /* 0x0C, */ 'q', 'Q', 0x11 }, - { /* 0x0D, */ 'w', 'W', 0x17 }, - { /* 0x0E, */ 'e', 'E', 0x05 }, - { /* 0x0F, */ 'r', 'R', 0x12 }, - { /* 0x10, */ 'y', 'Y', 0x19 }, - { /* 0x11, */ 't', 'T', 0x14 }, - { /* 0x12, */ '1', '!', 0x00 }, - { /* 0x13, */ '2', '@', 0x00 }, - { /* 0x14, */ '3', '#', 0x00 }, - { /* 0x15, */ '4', '$', 0x00 }, - { /* 0x16, */ '6', '^', 0x1E }, - { /* 0x17, */ '5', '%', 0x00 }, - { /* 0x18, */ '=', '+', 0x00 }, - { /* 0x19, */ '9', '(', 0x00 }, - { /* 0x1A, */ '7', '&', 0x00 }, - { /* 0x1B, */ '-', '_', 0x1F }, - { /* 0x1C, */ '8', '*', 0x00 }, - { /* 0x1D, */ '0', ')', 0x00 }, - { /* 0x1E, */ ']', '}', 0x1D }, - { /* 0x1F, */ 'o', 'O', 0x0F }, - { /* 0x20, */ 'u', 'U', 0x15 }, - { /* 0x21, */ '[', '{', 0x1B }, - { /* 0x22, */ 'i', 'I', 0x09 }, - { /* 0x23, */ 'p', 'P', 0x10 }, - { /* 0x24, */ 0x0D, 0x0D, 0x0D }, - { /* 0x25, */ 'l', 'L', 0x0C }, - { /* 0x26, */ 'j', 'J', 0x0A }, - { /* 0x27, */ '\'', '"', 0x00 }, - { /* 0x28, */ 'k', 'K', 0x0B }, - { /* 0x29, */ ';', ':', 0x00 }, - { /* 0x2A, */ '\\', '|', 0x1C }, - { /* 0x2B, */ ',', '<', 0x00 }, - { /* 0x2C, */ '/', '?', 0x00 }, - { /* 0x2D, */ 'n', 'N', 0x0E }, - { /* 0x2E, */ 'm', 'M', 0x0D }, - { /* 0x2F, */ '.', '>', 0x00 }, - { /* 0x30, */ 0x09, 0x09, 0x09 }, - { /* 0x31, */ ' ', ' ', 0x00 }, - { /* 0x32, */ '`', '~', 0x00 }, - { /* 0x33, */ 0x7F, 0x7F, 0x7F }, /* Delete */ - { /* 0x34, */ 0x00, 0x00, 0x00 }, - { /* 0x35, */ 0x1B, 0x1B, 0x1B }, - { /* 0x36, */ 0x00, 0x00, 0x00 }, - { /* 0x37, */ 0x00, 0x00, 0x00 }, - { /* 0x38, */ 0x00, 0x00, 0x00 }, - { /* 0x39, */ 0x00, 0x00, 0x00 }, - { /* 0x3A, */ 0x00, 0x00, 0x00 }, - { /* 0x3B, */ 'h', 0x00, 0x00 }, /* Left */ - { /* 0x3C, */ 'l', 0x00, 0x00 }, /* Right */ - { /* 0x3D, */ 'j', 0x00, 0x00 }, /* Down */ - { /* 0x3E, */ 'k', 0x00, 0x00 }, /* Up */ - { /* 0x3F, */ 0x00, 0x00, 0x00 }, - { /* 0x40, */ 0x00, 0x00, 0x00 }, - { /* 0x41, */ '.', '.', 0x00 }, - { /* 0x42, */ 0x00, 0x00, 0x00 }, - { /* 0x43, */ '*', '*', 0x00 }, - { /* 0x44, */ 0x00, 0x00, 0x00 }, - { /* 0x45, */ '+', '+', 0x00 }, - { /* 0x46, */ 0x00, 0x00, 0x00 }, - { /* 0x47, */ 0x00, 0x00, 0x00 }, - { /* 0x48, */ 0x00, 0x00, 0x00 }, - { /* 0x49, */ 0x00, 0x00, 0x00 }, - { /* 0x4A, */ 0x00, 0x00, 0x00 }, - { /* 0x4B, */ '/', '/', 0x00 }, - { /* 0x4C, */ 0x0D, 0x0D, 0x0D }, - { /* 0x4D, */ 0x00, 0x00, 0x00 }, - { /* 0x4E, */ '-', '-', 0x00 }, - { /* 0x4F, */ 0x00, 0x00, 0x00 }, - { /* 0x50, */ 0x00, 0x00, 0x00 }, - { /* 0x51, */ '=', '=', 0x00 }, - { /* 0x52, */ '0', '0', 0x00 }, - { /* 0x53, */ '1', '1', 0x00 }, - { /* 0x54, */ '2', '2', 0x00 }, - { /* 0x55, */ '3', '3', 0x00 }, - { /* 0x56, */ '4', '4', 0x00 }, - { /* 0x57, */ '5', '5', 0x00 }, - { /* 0x58, */ '6', '6', 0x00 }, - { /* 0x59, */ '7', '7', 0x00 }, - { /* 0x5A, */ 0x00, 0x00, 0x00 }, - { /* 0x5B, */ '8', '8', 0x00 }, - { /* 0x5C, */ '9', '9', 0x00 }, - { /* 0x5D, */ 0x00, 0x00, 0x00 }, - { /* 0x5E, */ 0x00, 0x00, 0x00 }, - { /* 0x5F, */ 0x00, 0x00, 0x00 }, - { /* 0x60, */ 0x00, 0x00, 0x00 }, - { /* 0x61, */ 0x00, 0x00, 0x00 }, - { /* 0x62, */ 0x00, 0x00, 0x00 }, - { /* 0x63, */ 0x00, 0x00, 0x00 }, - { /* 0x64, */ 0x00, 0x00, 0x00 }, - { /* 0x65, */ 0x00, 0x00, 0x00 }, - { /* 0x66, */ 0x00, 0x00, 0x00 }, - { /* 0x67, */ 0x00, 0x00, 0x00 }, - { /* 0x68, */ 0x00, 0x00, 0x00 }, - { /* 0x69, */ 0x00, 0x00, 0x00 }, - { /* 0x6A, */ 0x00, 0x00, 0x00 }, - { /* 0x6B, */ 0x00, 0x00, 0x00 }, - { /* 0x6C, */ 0x00, 0x00, 0x00 }, - { /* 0x6D, */ 0x00, 0x00, 0x00 }, - { /* 0x6E, */ 0x00, 0x00, 0x00 }, - { /* 0x6F, */ 0x00, 0x00, 0x00 }, - { /* 0x70, */ 0x00, 0x00, 0x00 }, - { /* 0x71, */ 0x00, 0x00, 0x00 }, - { /* 0x72, */ 0x00, 0x00, 0x00 }, - { /* 0x73, */ 0x00, 0x00, 0x00 }, - { /* 0x74, */ 0x00, 0x00, 0x00 }, - { /* 0x75, */ 0x00, 0x00, 0x00 }, - { /* 0x76, */ 0x00, 0x00, 0x00 }, - { /* 0x77, */ 0x00, 0x00, 0x00 }, - { /* 0x78, */ 0x00, 0x00, 0x00 }, - { /* 0x79, */ 0x00, 0x00, 0x00 }, - { /* 0x7A, */ 0x00, 0x00, 0x00 }, - { /* 0x7B, */ 0x00, 0x00, 0x00 }, - { /* 0x7C, */ 0x00, 0x00, 0x00 }, - { /* 0x7D, */ 0x00, 0x00, 0x00 }, - { /* 0x7E, */ 0x00, 0x00, 0x00 }, - { /* 0x7F, */ 0x00, 0x00, 0x00 } +unsigned char keyboard[128][4] = { + /* Scan code Normal Shifted Controlled XT */ + { /* 0x00, */ 'a', 'A', 0x01, 30 }, + { /* 0x01, */ 's', 'S', 0x13, 31 }, + { /* 0x02, */ 'd', 'D', 0x04, 32 }, + { /* 0x03, */ 'f', 'F', 0x06, 33 }, + { /* 0x04, */ 'h', 'H', 0x08, 35 }, + { /* 0x05, */ 'g', 'G', 0x07, 34 }, + { /* 0x06, */ 'z', 'Z', 0x1A, 44 }, + { /* 0x07, */ 'x', 'X', 0x18, 45 }, + { /* 0x08, */ 'c', 'C', 0x03, 46 }, + { /* 0x09, */ 'v', 'V', 0x16, 47 }, + { /* 0x0A, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x0B, */ 'b', 'B', 0x02, 48 }, + { /* 0x0C, */ 'q', 'Q', 0x11, 16 }, + { /* 0x0D, */ 'w', 'W', 0x17, 17 }, + { /* 0x0E, */ 'e', 'E', 0x05, 18 }, + { /* 0x0F, */ 'r', 'R', 0x12, 19 }, + { /* 0x10, */ 'y', 'Y', 0x19, 21 }, + { /* 0x11, */ 't', 'T', 0x14, 20 }, + { /* 0x12, */ '1', '!', 0x00, 2 }, + { /* 0x13, */ '2', '@', 0x00, 3 }, + { /* 0x14, */ '3', '#', 0x00, 4 }, + { /* 0x15, */ '4', '$', 0x00, 5 }, + { /* 0x16, */ '6', '^', 0x1E, 7 }, + { /* 0x17, */ '5', '%', 0x00, 6 }, + { /* 0x18, */ '=', '+', 0x00, 13 }, + { /* 0x19, */ '9', '(', 0x00, 10 }, + { /* 0x1A, */ '7', '&', 0x00, 8 }, + { /* 0x1B, */ '-', '_', 0x1F, 12 }, + { /* 0x1C, */ '8', '*', 0x00, 9 }, + { /* 0x1D, */ '0', ')', 0x00, 11 }, + { /* 0x1E, */ ']', '}', 0x1D, 27 }, + { /* 0x1F, */ 'o', 'O', 0x0F, 24 }, + { /* 0x20, */ 'u', 'U', 0x15, 22 }, + { /* 0x21, */ '[', '{', 0x1B, 26 }, + { /* 0x22, */ 'i', 'I', 0x09, 23 }, + { /* 0x23, */ 'p', 'P', 0x10, 25 }, + { /* 0x24, */ 0x0D, 0x0D, 0x0D, 28 }, + { /* 0x25, */ 'l', 'L', 0x0C, 38 }, + { /* 0x26, */ 'j', 'J', 0x0A, 36 }, + { /* 0x27, */ '\'', '"', 0x00, 40 }, + { /* 0x28, */ 'k', 'K', 0x0B, 37 }, + { /* 0x29, */ ';', ':', 0x00, 39 }, + { /* 0x2A, */ '\\', '|', 0x1C, 43 }, + { /* 0x2B, */ ',', '<', 0x00, 51 }, + { /* 0x2C, */ '/', '?', 0x00, 53 }, + { /* 0x2D, */ 'n', 'N', 0x0E, 49 }, + { /* 0x2E, */ 'm', 'M', 0x0D, 50 }, + { /* 0x2F, */ '.', '>', 0x00, 52 }, + { /* 0x30, */ 0x09, 0x09, 0x09, 15 }, + { /* 0x31, */ ' ', ' ', 0x00, 57 }, + { /* 0x32, */ '`', '~', 0x00, 41 }, + { /* 0x33, */ 0x7F, 0x7F, 0x7F, 14 }, /* Delete */ + { /* 0x34, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x35, */ 0x1B, 0x1B, 0x1B, 1 }, + { /* 0x36, */ 0x00, 0x00, 0x00, 29 }, + { /* 0x37, */ 0x00, 0x00, 0x00, 56 }, + { /* 0x38, */ 0x00, 0x00, 0x00, 42 }, + { /* 0x39, */ 0x00, 0x00, 0x00, 58 }, + { /* 0x3A, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x3B, */ 'h', 0x00, 0x00, 203 }, /* Left */ + { /* 0x3C, */ 'l', 0x00, 0x00, 205 }, /* Right */ + { /* 0x3D, */ 'j', 0x00, 0x00, 208 }, /* Down */ + { /* 0x3E, */ 'k', 0x00, 0x00, 200 }, /* Up */ + { /* 0x3F, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x40, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x41, */ '.', '.', 0x00, 83 }, + { /* 0x42, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x43, */ '*', '*', 0x00, 55 }, + { /* 0x44, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x45, */ '+', '+', 0x00, 78 }, + { /* 0x46, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x47, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x48, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x49, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x4A, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x4B, */ '/', '/', 0x00, 181 }, + { /* 0x4C, */ 0x0D, 0x0D, 0x0D, 156 }, + { /* 0x4D, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x4E, */ '-', '-', 0x00, 74 }, + { /* 0x4F, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x50, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x51, */ '=', '=', 0x00, 253 }, /*XT?*/ + { /* 0x52, */ '0', '0', 0x00, 82 }, + { /* 0x53, */ '1', '1', 0x00, 79 }, + { /* 0x54, */ '2', '2', 0x00, 80 }, + { /* 0x55, */ '3', '3', 0x00, 81 }, + { /* 0x56, */ '4', '4', 0x00, 75 }, + { /* 0x57, */ '5', '5', 0x00, 76 }, + { /* 0x58, */ '6', '6', 0x00, 77 }, + { /* 0x59, */ '7', '7', 0x00, 71 }, + { /* 0x5A, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x5B, */ '8', '8', 0x00, 72 }, + { /* 0x5C, */ '9', '9', 0x00, 73 }, + { /* 0x5D, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x5E, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x5F, */ 0x00, 0x00, 0x00, 51 }, + { /* 0x60, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x61, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x62, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x63, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x64, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x65, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x66, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x67, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x68, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x69, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x6A, */ 0x00, 0x00, 0x00, 156 }, + { /* 0x6B, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x6C, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x6D, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x6E, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x6F, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x70, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x71, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x72, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x73, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x74, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x75, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x76, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x77, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x78, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x79, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7A, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7B, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7C, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7D, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7E, */ 0x00, 0x00, 0x00, 0 }, + { /* 0x7F, */ 0x00, 0x00, 0x00, 0 } }; #endif /* KEYBOARD_ARRAY */ |