summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/pazquel/board.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/board/pazquel/board.c b/board/pazquel/board.c
index bebf0e35e9..8415e59f36 100644
--- a/board/pazquel/board.c
+++ b/board/pazquel/board.c
@@ -122,13 +122,15 @@ __override struct keyboard_scan_config keyscan_config = {
/* Use 80 us, because KSO_02 passes through the H1. */
.output_settle_us = 80,
/*
- * Unmask 0x08 in [0] (KSO_00/KSI_03, the new location of Search key);
- * as it still uses the legacy location (KSO_01/KSI_00).
+ * 1. launcher key mapped to (KSI_3, KSO_0):
+ * change actual_key_mask[0] = 0x14 to 0x1c
+ * 2. T11 key not in keyboard (KSI_0,KSO_1):
+ * change actual_key_mask[1] from 0xff to 0xfe
*/
- .actual_key_mask = {
- 0x14, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff,
- 0xa4, 0xff, 0xfe, 0x55, 0xfa, 0xca
- },
+ .actual_key_mask = {
+ 0x1c, 0xfe, 0xff, 0xff, 0xff, 0xf5, 0xff,
+ 0xa4, 0xff, 0xfe, 0x55, 0xfa, 0xca
+ },
/* Other values should be the same as the default configuration. */
.debounce_down_us = 9 * MSEC,
.debounce_up_us = 30 * MSEC,