kbd.h revision 1.1
11.1Soki/* 21.1Soki * Copyright (c) 1992, 1993 31.1Soki * The Regents of the University of California. All rights reserved. 41.1Soki * 51.1Soki * This software was developed by the Computer Systems Engineering group 61.1Soki * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 71.1Soki * contributed to Berkeley. 81.1Soki * 91.1Soki * All advertising materials mentioning features or use of this software 101.1Soki * must display the following acknowledgement: 111.1Soki * This product includes software developed by the University of 121.1Soki * California, Lawrence Berkeley Laboratory. 131.1Soki * 141.1Soki * Redistribution and use in source and binary forms, with or without 151.1Soki * modification, are permitted provided that the following conditions 161.1Soki * are met: 171.1Soki * 1. Redistributions of source code must retain the above copyright 181.1Soki * notice, this list of conditions and the following disclaimer. 191.1Soki * 2. Redistributions in binary form must reproduce the above copyright 201.1Soki * notice, this list of conditions and the following disclaimer in the 211.1Soki * documentation and/or other materials provided with the distribution. 221.1Soki * 3. All advertising materials mentioning features or use of this software 231.1Soki * must display the following acknowledgement: 241.1Soki * This product includes software developed by the University of 251.1Soki * California, Berkeley and its contributors. 261.1Soki * 4. Neither the name of the University nor the names of its contributors 271.1Soki * may be used to endorse or promote products derived from this software 281.1Soki * without specific prior written permission. 291.1Soki * 301.1Soki * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 311.1Soki * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 321.1Soki * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 331.1Soki * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 341.1Soki * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 351.1Soki * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 361.1Soki * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 371.1Soki * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 381.1Soki * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 391.1Soki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 401.1Soki * SUCH DAMAGE. 411.1Soki * 421.1Soki * @(#)kbd.h 8.1 (Berkeley) 6/11/93 431.1Soki * 441.1Soki * from: Header: kbd.h,v 1.5 92/11/26 01:15:33 torek Exp (LBL) 451.1Soki * $Id: kbd.h,v 1.1 1996/05/05 12:17:15 oki Exp $ 461.1Soki */ 471.1Soki 481.1Soki/* 491.1Soki * Keyboard `registers'. (This should be called kbd_reg.h but we need to 501.1Soki * be compatible.) 511.1Soki */ 521.1Soki 531.1Soki/* 541.1Soki * Control codes sent from type 2, 3, and 4 keyboards. 551.1Soki * 561.1Soki * Note that KBD_RESET is followed by a keyboard ID, while KBD_IDLE is not. 571.1Soki * KBD_IDLE does not take the place of any `up' transitions (it merely occurs 581.1Soki * after them). 591.1Soki */ 601.1Soki#define KBD_RESET 0xff /* keyboard `reset' response */ 611.1Soki#define KBD_IDLE 0x7f /* keyboard `all keys are up' code */ 621.1Soki 631.1Soki/* Keyboard IDs */ 641.1Soki#define KB_SUN2 2 /* type 2 keyboard */ 651.1Soki#define KB_SUN3 3 /* type 3 keyboard */ 661.1Soki#define KB_SUN4 4 /* type 4 keyboard */ 671.1Soki 681.1Soki/* Key codes are in 0x00..0x7e; KBD_UP is set if the key goes up */ 691.1Soki#define KBD_KEYMASK 0x7f /* keyboard key mask */ 701.1Soki#define KBD_UP 0x80 /* keyboard `up' transition */ 711.1Soki 721.1Soki/* Keyboard codes needed to recognize the L1-A sequence */ 731.1Soki#define KBD_L1 1 /* keyboard code for `L1' key */ 741.1Soki#define KBD_A 77 /* keyboard code for `A' key */ 751.1Soki 761.1Soki/* Control codes sent to the various keyboards */ 771.1Soki#define KBD_CMD_RESET 1 /* reset keyboard */ 781.1Soki#define KBD_CMD_BELL 2 /* turn bell on */ 791.1Soki#define KBD_CMD_NOBELL 3 /* turn bell off */ 801.1Soki#define KBD_CMD_CLICK 10 /* turn keyclick on */ 811.1Soki#define KBD_CMD_NOCLICK 11 /* turn keyclick off */ 82