1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

Revert "Kernel+Userland: Implement support for PS2 scan code set 2"

This reverts commit 61a385fc01.

The commit broke the shift and caps lock key from working.
This commit is contained in:
Andrew Kaster 2023-12-29 21:47:00 +01:00 committed by Andrew Kaster
parent 68b0826107
commit d3025668a4
12 changed files with 440 additions and 982 deletions

View file

@ -7,14 +7,13 @@
#pragma once
#include <AK/Types.h>
#include <Kernel/Devices/HID/Definitions.h>
namespace Kernel {
struct ScanCodeEvent {
Array<u8, 8> scan_code_bytes;
ScanCodeSet sent_scan_code_set { ScanCodeSet::Set1 };
u8 bytes_count { 0 };
u32 scan_code_value { 0 };
bool pressed { false };
bool e0_prefix { false };
};
}