diff options
author | No0ne <[email protected]> | 2024-01-28 12:14:15 +0100 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-01-28 13:56:38 +0200 |
commit | 74d2d7466779b4c3367dd0677a5072f982061931 (patch) | |
tree | 9a361201d14b358fb7c85985a69f15e9c43d09e2 | |
parent | 5b1101e42fa07a466cc878745b985e7317e8da98 (diff) |
Keyboard Issues #19 fix (https://github.com/No0ne/ps2x2pico/issues/19) (#157)
(cherry picked from commit a08824ba42d82acbd47f7d0e993a4977002c7e31)
Signed-off-by: Maxim Devaev <[email protected]>
-rw-r--r-- | hid/pico/CMakeLists.txt | 2 | ||||
-rw-r--r-- | hid/pico/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hid/pico/CMakeLists.txt b/hid/pico/CMakeLists.txt index 0523da09..58a4c1a6 100644 --- a/hid/pico/CMakeLists.txt +++ b/hid/pico/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13) set(PICO_SDK_PATH ${CMAKE_CURRENT_LIST_DIR}/.pico-sdk) set(PICO_TINYUSB_PATH ${CMAKE_CURRENT_LIST_DIR}/.tinyusb) -set(PS2_PATH ${CMAKE_CURRENT_LIST_DIR}/.ps2x2pico) +set(PS2_PATH ${CMAKE_CURRENT_LIST_DIR}/.ps2x2pico/src) # For TinyUSB set(FAMILY rp2040) diff --git a/hid/pico/Makefile b/hid/pico/Makefile index 76ff2149..b335228b 100644 --- a/hid/pico/Makefile +++ b/hid/pico/Makefile @@ -31,7 +31,7 @@ endef .tinyusb: $(call libdep,tinyusb,hathach/tinyusb,d713571cd44f05d2fc72efc09c670787b74106e0) .ps2x2pico: - $(call libdep,ps2x2pico,No0ne/ps2x2pico,d95332b4ea11cad4a11da070857e613c80f9b935) + $(call libdep,ps2x2pico,No0ne/ps2x2pico,b90814df40ebbc0f42c2886b4bd17b20a177a4da) deps: .pico-sdk .tinyusb .ps2x2pico |