logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

0_1.c (390B)


  1. // Copyright 2022 Michael McCoyd (@mmccoyd)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "quantum.h"
  4. // Keymatrix spots to ignore, as one signals handedness and others have no key
  5. const matrix_row_t matrix_mask[] = {
  6. //c:543210 column id's
  7. 0b111111,
  8. 0b111111,
  9. 0b111111,
  10. 0b000111,
  11. 0b111110,
  12. //c:543210
  13. 0b111111,
  14. 0b111111,
  15. 0b111111,
  16. 0b000111,
  17. 0b111110
  18. };