From dc16f477903f59acbb964eb35f126c4209866479 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Fri, 7 Aug 2020 22:39:32 +0300 Subject: [PATCH] changed ps/2 pins --- hid/platformio.ini | 4 ++-- hid/src/ps2/hid.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hid/platformio.ini b/hid/platformio.ini index 113a4148..b5319230 100644 --- a/hid/platformio.ini +++ b/hid/platformio.ini @@ -38,5 +38,5 @@ lib_deps = build_flags = ${common.build_flags} -DHID_PS2 - -DPS2_KBD_CLOCK_PIN=3 - -DPS2_KBD_DATA_PIN=2 + -DPS2_KBD_CLOCK_PIN=7 + -DPS2_KBD_DATA_PIN=5 diff --git a/hid/src/ps2/hid.h b/hid/src/ps2/hid.h index 09b87009..d7057c03 100644 --- a/hid/src/ps2/hid.h +++ b/hid/src/ps2/hid.h @@ -29,8 +29,8 @@ #include "keymap.h" -// #define PS2_KBD_CLOCK_PIN 3 -// #define PS2_KBD_DATA_PIN 2 +// #define PS2_KBD_CLOCK_PIN 7 +// #define PS2_KBD_DATA_PIN 5 class Ps2Hid {