diff options
author | yhr0x43 <58871693+yhr0x43@users.noreply.github.com> | 2020-10-01 13:41:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 04:41:21 +1000 |
commit | 7a2124db6bfea74672acd714d78c10eb9288732a (patch) | |
tree | 49def2e91f750e6911c520c8ab9ab1b06cfc1365 /keyboards/crkbd/rev1/legacy/split_util.h | |
parent | 45f044907c8ac784d6169f3495b96c142d6d699d (diff) |
Crkbd implementing return value for matrix_scan() (#10422)
Diffstat (limited to 'keyboards/crkbd/rev1/legacy/split_util.h')
-rw-r--r-- | keyboards/crkbd/rev1/legacy/split_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/crkbd/rev1/legacy/split_util.h b/keyboards/crkbd/rev1/legacy/split_util.h index 414763bff2..b2ddc1f97a 100644 --- a/keyboards/crkbd/rev1/legacy/split_util.h +++ b/keyboards/crkbd/rev1/legacy/split_util.h @@ -27,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. extern volatile bool isLeftHand; // slave version of matix scan, defined in matrix.c -void matrix_slave_scan(void); +uint8_t matrix_slave_scan(void); void split_keyboard_setup(void); bool has_usb(void); |