]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
Correct the comments of matrix ROW and COL. (#604)
authorYou Xiaojie / 尤晓杰 <yxj790222@163.com>
Mon, 18 Mar 2019 06:47:07 +0000 (14:47 +0800)
committerhasu@tmk <tmk@users.noreply.github.com>
Mon, 18 Mar 2019 06:47:07 +0000 (15:47 +0900)
according to the code:
static uint8_t matrix[MATRIX_ROWS];
#define ROW(code)      (code>>3)
#define COL(code) (code&0x07)
in converter/terminal_usb/matrix.c
ROW is decided by bits 7-4 of scancode
COL is decided by bits 2-0 of scancode

converter/terminal_usb/config.h

index ea5ce62caaeb0953d0ef8c27575f91ca57665a09..6191f72819910f4f61f68a30b1db8e09b4764c13 100644 (file)
@@ -28,8 +28,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
 /* matrix size */
-#define MATRIX_ROWS 17  // keycode bit: 3-0
-#define MATRIX_COLS 8   // keycode bit: 6-4
+#define MATRIX_ROWS 17  // keycode bit: 7-3
+#define MATRIX_COLS 8   // keycode bit: 2-0
 
 
 /* legacy keymap support */