You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
4.2 KiB

  1. /*
  2. Copyright 2021 Matthew Dias
  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. #include <stdint.h>
  15. #include <stdbool.h>
  16. #include "wait.h"
  17. #include "quantum.h"
  18. #include "i2c_master.h"
  19. static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
  20. static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
  21. static void unselect_rows(void) {
  22. for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
  23. setPinInputHigh(row_pins[x]);
  24. }
  25. }
  26. static void select_row(uint8_t row) {
  27. setPinOutput(row_pins[row]);
  28. writePinLow(row_pins[row]);
  29. }
  30. static void unselect_row(uint8_t row) {
  31. setPinInputHigh(row_pins[row]);
  32. }
  33. static void init_pins(void) {
  34. unselect_rows();
  35. // Set I/O
  36. uint8_t send_data[2] = { 0xFF, 0x03};
  37. i2c_writeReg((PORT_EXPANDER_ADDRESS << 1), 0x00, &send_data[0], 2, 20);
  38. // Set Pull-up
  39. i2c_writeReg((PORT_EXPANDER_ADDRESS << 1), 0x0C, &send_data[0], 2, 20);
  40. for (uint8_t x = 0; x < MATRIX_COLS; x++) {
  41. if ( x < 8 ) {
  42. setPinInputHigh(col_pins[x]);
  43. }
  44. }
  45. }
  46. void matrix_init_custom(void) {
  47. // TODO: initialize hardware here
  48. // Initialize I2C
  49. i2c_init();
  50. // initialize key pins
  51. init_pins();
  52. wait_ms(50);
  53. }
  54. static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
  55. // Store last value of row prior to reading
  56. matrix_row_t last_row_value = current_matrix[current_row];
  57. // Clear data in matrix row
  58. current_matrix[current_row] = 0;
  59. // Select row and wait for row selecton to stabilize
  60. select_row(current_row);
  61. matrix_io_delay();
  62. uint8_t port_expander_col_buffer[2];
  63. i2c_readReg((PORT_EXPANDER_ADDRESS << 1), 0x12, &port_expander_col_buffer[0], 2, 20);
  64. // For each col...
  65. for(uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
  66. uint8_t pin_state;
  67. // Select the col pin to read (active low)
  68. switch (col_index) {
  69. case 8 :
  70. pin_state = port_expander_col_buffer[0] & (1 << 0);
  71. break;
  72. case 9 :
  73. pin_state = port_expander_col_buffer[0] & (1 << 1);
  74. break;
  75. case 10 :
  76. pin_state = port_expander_col_buffer[0] & (1 << 2);
  77. break;
  78. case 11 :
  79. pin_state = port_expander_col_buffer[0] & (1 << 3);
  80. break;
  81. case 12 :
  82. pin_state = port_expander_col_buffer[0] & (1 << 4);
  83. break;
  84. case 13 :
  85. pin_state = port_expander_col_buffer[0] & (1 << 5);
  86. break;
  87. case 14 :
  88. pin_state = port_expander_col_buffer[0] & (1 << 6);
  89. break;
  90. case 15 :
  91. pin_state = port_expander_col_buffer[0] & (1 << 7);
  92. break;
  93. case 16 :
  94. pin_state = port_expander_col_buffer[1] & (1 << 0);
  95. break;
  96. case 17 :
  97. pin_state = port_expander_col_buffer[1] & (1 << 1);
  98. break;
  99. default :
  100. pin_state = readPin(col_pins[col_index]);
  101. }
  102. // Populate the matrix row with the state of the col pin
  103. current_matrix[current_row] |= pin_state ? 0 : (MATRIX_ROW_SHIFTER << col_index);
  104. }
  105. // Unselect row
  106. unselect_row(current_row);
  107. return (last_row_value != current_matrix[current_row]);
  108. }
  109. bool matrix_scan_custom(matrix_row_t current_matrix[]) {
  110. bool matrix_has_changed = false;
  111. // Set row, read cols
  112. for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
  113. matrix_has_changed |= read_cols_on_row(current_matrix, current_row);
  114. }
  115. return matrix_has_changed;
  116. }