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.

241 lines
7.1 KiB

[Keyboard] gBoards GergoPlex (#13027) * Moved gergoplex to seperate PR * vendor + cformat * Update keyboards/gboards/k/gergoplex/matrix.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * lifiting keyboards up * Update readme.md * Update keyboards/gboards/gergoplex/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * remove English dicts * cformatted * Prettify keymap * Remove via keymaps Via doesn't support chords/combos, and this makes the keymap on such a small keyboard quite uncomfortable and incomplete. * Address QMK pull code review notes * Cleanup (tabs, excessive comments) * Fix keymap typos * Use enum to define layers * Multiple changes - got rid of LAYOUT_kc in favour of LAYOUT_split_3x5_3 - fixed matrix custom C code to build with updated external dependencies (gcc) - fixed used combo docs keyboards/gboards/gergoplex/matrix.c:189:9: error: implicit declaration of function 'phex' [-Werror=implicit-function-declaration] phex(row); ^~~~ keyboards/gboards/gergoplex/matrix.c:191:9: error: implicit declaration of function 'pbin_reverse16'; did you mean 'print_bin_reverse16'? [-Werror=implicit-function-declaration] pbin_reverse16(matrix_get_row(row)); * Remove apparently redundant macros * Replace direct pin control with IO functions * config mouse enable and combo delay fix The default delay is 200: #define COMBO_TERM 200 how long for the Combo keys to be detected. Defaults to TAPPING_TERM if not defined. tmk_core/common/action_tapping.h|22| 13:# define TAPPING_TERM 200 * Remove redundant defines * Unambiguously refer to the Special layer * Fix formatting * gboards/gergoplex set IGNORE_MOD_TAP_INTERRUPT This solves my issue was with KC_CTL_A working correctly and it was set in @germ's repo https://github.com/germ/qmk_firmware/blob/39c86e080dc04b68ee08387dcb5144c88cb44855/keyboards/gboards/k/gergoplex/config.h#L49 https://beta.docs.qmk.fm/using-qmk/software-features/tap_hold#ignore-mod-tap-interrupt * Name change See commit 581368596ed * Wording change * Update keyboards/gboards/gergoplex/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Add copyright headers * Fix debounce type | avr-gcc: error: .build/obj_gboards_gergoplex_default/quantum/debounce/eager_pr.o: No such file or directory * Implement colemak-dhm keymap Co-authored-by: Germ <jeremythegeek@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Brian Tannous <Brian@BrianTannous.com>
2 years ago
  1. /*
  2. Copyright 2013 Oleg Kostyuk <cub.uanic@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. #include "matrix.h"
  15. #include <stdint.h>
  16. #include <stdbool.h>
  17. #include <avr/io.h>
  18. #include "wait.h"
  19. #include "action_layer.h"
  20. #include "print.h"
  21. #include "debug.h"
  22. #include "util.h"
  23. #include "debounce.h"
  24. #include "gergoplex.h"
  25. #ifdef BALLER
  26. # include <avr/interrupt.h>
  27. # include "pointing_device.h"
  28. #endif
  29. #ifndef DEBOUNCE
  30. # define DEBOUNCE 5
  31. #endif
  32. // ATmega pin defs
  33. #define ROW1 (1 << 6)
  34. #define ROW2 (1 << 5)
  35. #define ROW3 (1 << 4)
  36. #define ROW4 (1 << 1)
  37. /* matrix state(1:on, 0:off) */
  38. static matrix_row_t matrix[MATRIX_ROWS];
  39. /*
  40. * matrix state(1:on, 0:off)
  41. * contains the raw values without debounce filtering of the last read cycle.
  42. */
  43. static matrix_row_t raw_matrix[MATRIX_ROWS];
  44. static const pin_t row_pins[MATRIX_COLS] = MATRIX_ROW_PINS;
  45. // Right-hand side only pins, the left side is controlled my MCP
  46. static const pin_t col_pins[MATRIX_ROWS_PER_SIDE] = MATRIX_COL_PINS;
  47. // Debouncing: store for each key the number of scans until it's eligible to
  48. // change. When scanning the matrix, ignore any changes in keys that have
  49. // already changed in the last DEBOUNCE scans.
  50. static matrix_row_t read_cols(uint8_t row);
  51. static void init_cols(void);
  52. static void unselect_rows(void);
  53. static void select_row(uint8_t row);
  54. static uint8_t mcp23018_reset_loop;
  55. __attribute__((weak)) void matrix_init_user(void) {}
  56. __attribute__((weak)) void matrix_scan_user(void) {}
  57. __attribute__((weak)) void matrix_scan_kb(void) { matrix_scan_user(); }
  58. void matrix_init(void) {
  59. // initialize row and col
  60. mcp23018_status = init_mcp23018();
  61. unselect_rows();
  62. init_cols();
  63. // initialize matrix state: all keys off
  64. for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
  65. matrix[i] = 0;
  66. raw_matrix[i] = 0;
  67. }
  68. debounce_init(MATRIX_ROWS);
  69. matrix_init_quantum();
  70. }
  71. void matrix_power_up(void) {
  72. mcp23018_status = init_mcp23018();
  73. unselect_rows();
  74. init_cols();
  75. // initialize matrix state: all keys off
  76. for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
  77. matrix[i] = 0;
  78. }
  79. }
  80. // Reads and stores a row, returning
  81. // whether a change occurred.
  82. static inline bool store_raw_matrix_row(uint8_t index) {
  83. matrix_row_t temp = read_cols(index);
  84. if (raw_matrix[index] != temp) {
  85. raw_matrix[index] = temp;
  86. return true;
  87. }
  88. return false;
  89. }
  90. uint8_t matrix_scan(void) {
  91. if (mcp23018_status) { // if there was an error
  92. if (++mcp23018_reset_loop == 0) {
  93. // if (++mcp23018_reset_loop >= 1300) {
  94. // since mcp23018_reset_loop is 8 bit - we'll try to reset once in 255 matrix scans
  95. // this will be approx bit more frequent than once per second
  96. print("trying to reset mcp23018\n");
  97. mcp23018_status = init_mcp23018();
  98. if (mcp23018_status) {
  99. print("left side not responding\n");
  100. } else {
  101. print("left side attached\n");
  102. }
  103. }
  104. }
  105. bool changed = false;
  106. for (uint8_t i = 0; i < MATRIX_ROWS_PER_SIDE; i++) {
  107. // select rows from left and right hands
  108. uint8_t left_index = i;
  109. uint8_t right_index = i + MATRIX_ROWS_PER_SIDE;
  110. select_row(left_index);
  111. select_row(right_index);
  112. // we don't need a 30us delay anymore, because selecting a
  113. // left-hand row requires more than 30us for i2c.
  114. changed |= store_raw_matrix_row(left_index);
  115. changed |= store_raw_matrix_row(right_index);
  116. unselect_rows();
  117. }
  118. debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
  119. matrix_scan_quantum();
  120. #ifdef DEBUG_MATRIX
  121. for (uint8_t c = 0; c < MATRIX_COLS; c++)
  122. for (uint8_t r = 0; r < MATRIX_ROWS; r++)
  123. if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c);
  124. #endif
  125. return 1;
  126. }
  127. bool matrix_is_modified(void) // deprecated and evidently not called.
  128. {
  129. return true;
  130. }
  131. inline bool matrix_is_on(uint8_t row, uint8_t col) { return (matrix[row] & ((matrix_row_t)1 << col)); }
  132. inline matrix_row_t matrix_get_row(uint8_t row) { return matrix[row]; }
  133. void matrix_print(void) {
  134. print("\nr/c 0123456789ABCDEF\n");
  135. for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
  136. print_hex8(row);
  137. print(": ");
  138. print_bin_reverse16(matrix_get_row(row));
  139. print("\n");
  140. }
  141. }
  142. uint8_t matrix_key_count(void) {
  143. uint8_t count = 0;
  144. for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
  145. count += bitpop16(matrix[i]);
  146. }
  147. return count;
  148. }
  149. // Remember this means ROWS
  150. static void init_cols(void) {
  151. for (uint8_t row = 0; row < MATRIX_COLS; row++) {
  152. setPinInputHigh(row_pins[row]);
  153. }
  154. }
  155. static matrix_row_t read_cols(uint8_t row) {
  156. if (row < 5) {
  157. if (mcp23018_status) { // if there was an error
  158. return 0;
  159. } else {
  160. uint8_t data = 0;
  161. mcp23018_status = i2c_start(I2C_ADDR_READ, I2C_TIMEOUT);
  162. if (mcp23018_status) goto out;
  163. mcp23018_status = i2c_read_nack(I2C_TIMEOUT);
  164. if (mcp23018_status < 0) goto out;
  165. data = ~((uint8_t)mcp23018_status);
  166. mcp23018_status = I2C_STATUS_SUCCESS;
  167. out:
  168. i2c_stop();
  169. #ifdef DEBUG_MATRIX
  170. if (data != 0x00) xprintf("I2C: %d\n", data);
  171. #endif
  172. return data;
  173. }
  174. } else {
  175. return ~((((PINF & ROW4) >> 1) | ((PINF & (ROW1 | ROW2 | ROW3)) >> 3)) & 0xF);
  176. }
  177. }
  178. // Row pin configuration
  179. static void unselect_rows(void) {
  180. // no need to unselect on mcp23018, because the select step sets all
  181. // the other row bits high, and it's not changing to a different direction
  182. for (uint8_t col = 0; col < MATRIX_ROWS_PER_SIDE; col++) {
  183. setPinInput(col_pins[col]);
  184. writePinLow(col_pins[col]);
  185. }
  186. }
  187. static void select_row(uint8_t row) {
  188. if (row < 5) {
  189. // select on mcp23018
  190. if (mcp23018_status) { // do nothing on error
  191. } else { // set active row low : 0 // set other rows hi-Z : 1
  192. mcp23018_status = i2c_start(I2C_ADDR_WRITE, I2C_TIMEOUT);
  193. if (mcp23018_status) goto out;
  194. mcp23018_status = i2c_write(GPIOA, I2C_TIMEOUT);
  195. if (mcp23018_status) goto out;
  196. mcp23018_status = i2c_write(0xFF & ~(1 << (row + 1)), I2C_TIMEOUT);
  197. if (mcp23018_status) goto out;
  198. out:
  199. i2c_stop();
  200. }
  201. } else {
  202. setPinOutput(col_pins[row - MATRIX_ROWS_PER_SIDE]);
  203. writePinLow(col_pins[row - MATRIX_ROWS_PER_SIDE]);
  204. }
  205. }