matrix.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. /*
  15. * scan matrix
  16. */
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #include <avr/io.h>
  20. #include "wait.h"
  21. #include "print.h"
  22. #include "debug.h"
  23. #include "util.h"
  24. #include "matrix.h"
  25. #include "split_util.h"
  26. #include "pro_micro.h"
  27. #include "config.h"
  28. #include "timer.h"
  29. #ifdef DEBUG_MATRIX_SCAN_RATE
  30. #include "matrix_scanrate.h"
  31. #endif
  32. void matrix_scan_user(void)
  33. {
  34. #ifdef DEBUG_MATRIX_SCAN_RATE
  35. matrix_check_scan_rate();
  36. matrix_time_between_scans();
  37. #endif
  38. }
  39. // Copy this code to split_common/matrix.c,
  40. // and call it instead of the unoptimized col_reader. Scan-rate jumps from 1200->1920
  41. // Also remove the sleep_us(30), not necessary for this keyboard.
  42. // In usb_descriptor.c, set .PollingIntervalMS = 0x01
  43. #define ROW_SHIFTER ((uint8_t)1)
  44. inline static matrix_row_t optimized_col_reader(void) {
  45. //MATRIX_COL_PINS { B6, B2, B3, B1, F7, F6, F5, F4 }
  46. return (PINB & (1 << 6) ? 0 : (ROW_SHIFTER << 0)) |
  47. (PINB & (1 << 2) ? 0 : (ROW_SHIFTER << 1)) |
  48. (PINB & (1 << 3) ? 0 : (ROW_SHIFTER << 2)) |
  49. (PINB & (1 << 1) ? 0 : (ROW_SHIFTER << 3)) |
  50. (PINF & (1 << 7) ? 0 : (ROW_SHIFTER << 4)) |
  51. (PINF & (1 << 6) ? 0 : (ROW_SHIFTER << 5)) |
  52. (PINF & (1 << 5) ? 0 : (ROW_SHIFTER << 6)) |
  53. (PINF & (1 << 4) ? 0 : (ROW_SHIFTER << 7));
  54. }