touchkit.hh (12658:eaa132294582) touchkit.hh (12660:c5caca5f7d68)
1/*
2 * Copyright (c) 2010, 2017-2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 34 unchanged lines hidden (view full) ---

43#include "base/vnc/vncinput.hh"
44#include "dev/ps2/device.hh"
45
46struct PS2TouchKitParams;
47
48class PS2TouchKit : public PS2Device, public VncMouse
49{
50 protected:
1/*
2 * Copyright (c) 2010, 2017-2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 34 unchanged lines hidden (view full) ---

43#include "base/vnc/vncinput.hh"
44#include "dev/ps2/device.hh"
45
46struct PS2TouchKitParams;
47
48class PS2TouchKit : public PS2Device, public VncMouse
49{
50 protected:
51 static const uint8_t ID[];
51 enum PS2Commands {
52 TpReadId = 0xE1,
53 TouchKitDiag = 0x0A,
54 };
52
53 enum TKCommands {
54 TouchKitActive = 'A',
55 TouchKitFWRev = 'D',
56 TouchKitCtrlType = 'E',
57 };
58
59 public:

--- 31 unchanged lines hidden ---
55
56 enum TKCommands {
57 TouchKitActive = 'A',
58 TouchKitFWRev = 'D',
59 TouchKitCtrlType = 'E',
60 };
61
62 public:

--- 31 unchanged lines hidden ---