Changeset b583311 in mainline


Ignore:
Timestamp:
2019-02-10T13:21:08Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
391996b
Parents:
d6b759c
Message:

Serial keyboard could handle Ctrl-Q et al.

Location:
uspace/srv/hid/input
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/ctl/stty.c

    rd6b759c rb583311  
    228228        0,      KC_RIGHT,       0x1b, 0x5b, 0x43, GSP_END,
    229229
     230        KM_CTRL,        KC_Q,           0x11, GSP_END,
     231        KM_CTRL,        KC_W,           0x17, GSP_END,
     232        KM_CTRL,        KC_E,           0x05, GSP_END,
     233        KM_CTRL,        KC_R,           0x12, GSP_END,
     234        KM_CTRL,        KC_T,           0x14, GSP_END,
     235        KM_CTRL,        KC_Y,           0x19, GSP_END,
     236        KM_CTRL,        KC_U,           0x15, GSP_END,
     237        KM_CTRL,        KC_O,           0x0f, GSP_END,
     238        KM_CTRL,        KC_P,           0x10, GSP_END,
     239
     240        KM_CTRL,        KC_A,           0x01, GSP_END,
     241        KM_CTRL,        KC_S,           0x13, GSP_END,
     242        KM_CTRL,        KC_D,           0x04, GSP_END,
     243        KM_CTRL,        KC_F,           0x06, GSP_END,
     244        KM_CTRL,        KC_G,           0x07, GSP_END,
     245        KM_CTRL,        KC_K,           0x0b, GSP_END,
     246        KM_CTRL,        KC_L,           0x0c, GSP_END,
     247
     248        KM_CTRL,        KC_Z,           0x1a, GSP_END,
     249        KM_CTRL,        KC_X,           0x18, GSP_END,
     250        KM_CTRL,        KC_C,           0x03, GSP_END,
     251        KM_CTRL,        KC_V,           0x16, GSP_END,
     252        KM_CTRL,        KC_B,           0x02, GSP_END,
     253        KM_CTRL,        KC_N,           0x0e, GSP_END,
     254
    230255        /*
    231256         * Sequences specific to Gnome terminal
  • uspace/srv/hid/input/stroke.c

    rd6b759c rb583311  
    4848static unsigned int mods_keys[][2] = {
    4949        { KM_LSHIFT, KC_LSHIFT },
     50        { KM_LCTRL, KC_LCTRL },
    5051        { 0, 0 }
    5152};
Note: See TracChangeset for help on using the changeset viewer.