Ignore:
File:
1 edited

Legend:

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

    rdcbb3ec r1875a0c  
    3434 * @file
    3535 * @brief Serial TTY-like keyboard controller driver.
    36  *
    37  * Keyboard emulation on a serial terminal.
    3836 */
    3937
     
    6563#include <stdio.h>
    6664
    67 /**
    68  * Sequnece definitions are primarily for Xterm. Additionally we define
    69  * sequences that are unique to Gnome terminal -- most are the same but
    70  * some differ.
    71  */
    7265static int seq_defs[] = {
    7366        /* Not shifted */
     
    8881        0,      KC_MINUS,       0x2d, GSP_END,
    8982        0,      KC_EQUALS,      0x3d, GSP_END,
    90 
    9183        0,      KC_BACKSPACE,   0x08, GSP_END,
    9284
     
    224216        0,      KC_RIGHT,       0x1b, 0x5b, 0x43, GSP_END,
    225217
    226         /*
    227          * Sequences specific to Gnome terminal
    228          */
    229         0,      KC_BACKSPACE,   0x7f, GSP_END, /* ASCII DEL */
    230         0,      KC_HOME,        0x1b, 0x4f, 0x48, GSP_END,
    231         0,      KC_END,         0x1b, 0x4f, 0x46, GSP_END,
    232 
    233218        0,      0
    234219};
Note: See TracChangeset for help on using the changeset viewer.