/usr/include/brltty/brldefs-hw.h is in libbrlapi-dev 5.5-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | /*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2017 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU Lesser General Public License, as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any
* later version. Please see the file LICENSE-LGPL for details.
*
* Web Page: http://brltty.com/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#ifndef BRLTTY_INCLUDED_HW_BRLDEFS
#define BRLTTY_INCLUDED_HW_BRLDEFS
typedef enum {
HW_MSG_INIT = 0X00,
HW_MSG_INIT_RESP = 0X01,
HW_MSG_DISPLAY = 0X02,
HW_MSG_GET_KEYS = 0X03,
HW_MSG_KEYS = 0X04,
HW_MSG_KEY_DOWN = 0X05,
HW_MSG_KEY_UP = 0X06,
HW_MSG_FIRMWARE_UPDATE = 0X07,
HW_MSG_FIRMWARE_RESP = 0X08,
HW_MSG_CONFIGURATION_UPDATE = 0X09,
HW_MSG_CONFIGURATION_RESP = 0X0A,
HW_MSG_GET_CONFIGURATION = 0X0B,
HW_MSG_GET_FIRMWARE_VERSION = 0X0C,
HW_MSG_FIRMWARE_VERSION_RESP = 0X0D,
HW_MSG_KEEP_AWAKE = 0X0E,
HW_MSG_KEEP_AWAKE_RESP = 0X0F,
HW_MSG_POWERING_OFF = 0X10
} HW_MessageType;
typedef union {
unsigned char bytes[3 + 0XFF];
struct {
unsigned char header;
unsigned char type;
unsigned char length;
union {
unsigned char bytes[0XFF];
struct {
unsigned char stillInitializing;
unsigned char modelIdentifier;
unsigned char cellCount;
} PACKED init;
struct {
unsigned char id;
} PACKED key;
struct {
unsigned char have;
unsigned char major;
unsigned char minor;
unsigned char build;
} PACKED firmwareVersion;
} data;
} PACKED fields;
} HW_Packet;
typedef enum {
HW_REP_FTR_Capabilities = 1,
HW_REP_FTR_Settings = 2,
HW_REP_FTR_Configuration = 3,
HW_REP_IN_PressedKeys = 4,
HW_REP_OUT_WriteCells = 5,
HW_REP_FTR_KeepAwake = 6,
HW_REP_IN_PoweringOff = 7
} HW_ReportIdentifier;
typedef struct {
unsigned char reportIdentifier;
char systemLanguage[2];
struct {
char major;
char minor;
char build[2];
} version;
char serialNumber[16];
unsigned char zero;
unsigned char cellCount;
unsigned char cellType;
unsigned char pad[13];
} HW_CapabilitiesReport;
typedef struct {
unsigned char reportIdentifier;
unsigned char dotPressure;
} HW_SettingsReport;
typedef struct {
unsigned char reportIdentifier;
unsigned char fill1;
unsigned char fill2;
unsigned char cellCount;
struct {
unsigned char firstIndex;
unsigned char lastIndex;
} primaryRoutingKeys;
struct {
unsigned char firstIndex;
unsigned char lastIndex;
} secondaryRoutingKeys;
} HW_ConfigurationReport;
typedef struct {
unsigned char reportIdentifier;
unsigned char fill;
} HW_KeepAwakeReport;
typedef struct {
unsigned char reportIdentifier;
unsigned char fill;
} HW_PoweringOffReport;
typedef enum {
HW_KEY_Reset = 1,
HW_KEY_Dot1 = 2,
HW_KEY_Dot2 = 3,
HW_KEY_Dot3 = 4,
HW_KEY_Dot4 = 5,
HW_KEY_Dot5 = 6,
HW_KEY_Dot6 = 7,
HW_KEY_Dot7 = 8,
HW_KEY_Dot8 = 9,
HW_KEY_Space = 10,
HW_KEY_Command1 = 11,
HW_KEY_Command2 = 12,
HW_KEY_Command3 = 13,
HW_KEY_Command4 = 14,
HW_KEY_Command5 = 15,
HW_KEY_Command6 = 16,
HW_KEY_Thumb1 = 17,
HW_KEY_Thumb2 = 18,
HW_KEY_Thumb3 = 19,
HW_KEY_Thumb4 = 20,
HW_KEY_CAL_OK = 30,
HW_KEY_CAL_FAIL = 31,
HW_KEY_CAL_EMPTY = 32,
HW_KEY_CAL_RESET = 34,
HW_KEY_ROUTING = 80
} HW_NavigationKey;
typedef enum {
HW_GRP_NavigationKeys = 0,
HW_GRP_RoutingKeys
} HW_KeyGroup;
#endif /* BRLTTY_INCLUDED_HW_BRLDEFS */
|