From caec24ba8c0e5222692b870474b894ec78df2164 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 20 Apr 2017 15:25:09 +0100 Subject: [PATCH] mtx: fix keyboard handling bug --- Kernel/platform-mtx/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-mtx/devtty.c b/Kernel/platform-mtx/devtty.c index a752b065..41d1bac7 100644 --- a/Kernel/platform-mtx/devtty.c +++ b/Kernel/platform-mtx/devtty.c @@ -189,7 +189,7 @@ static uint8_t keybyte, keybit; static uint8_t newkey; static int keysdown = 0; static uint16_t shiftmask[8] = { - 0, 0, 1, 0, 1, 0, 63, 0 + 0, 0, 1, 0, 1, 0, 65 , 0 }; __sfr __at 0x05 keyport; __sfr __at 0x06 keyporth; -- 2.34.1