logo

qmk_firmware

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

sym_eager_pk.c (5039B)


  1. /*
  2. Copyright 2017 Alex Ong<the.onga@gmail.com>
  3. Copyright 2021 Simon Arlott
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. /*
  16. Basic per-key algorithm. Uses an 8-bit counter per key.
  17. After pressing a key, it immediately changes state, and sets a counter.
  18. No further inputs are accepted until DEBOUNCE milliseconds have occurred.
  19. */
  20. #include "debounce.h"
  21. #include "timer.h"
  22. #include <stdlib.h>
  23. #ifdef PROTOCOL_CHIBIOS
  24. # if CH_CFG_USE_MEMCORE == FALSE
  25. # error ChibiOS is configured without a memory allocator. Your keyboard may have set `#define CH_CFG_USE_MEMCORE FALSE`, which is incompatible with this debounce algorithm.
  26. # endif
  27. #endif
  28. #ifndef DEBOUNCE
  29. # define DEBOUNCE 5
  30. #endif
  31. // Maximum debounce: 255ms
  32. #if DEBOUNCE > UINT8_MAX
  33. # undef DEBOUNCE
  34. # define DEBOUNCE UINT8_MAX
  35. #endif
  36. #define ROW_SHIFTER ((matrix_row_t)1)
  37. typedef uint8_t debounce_counter_t;
  38. #if DEBOUNCE > 0
  39. static debounce_counter_t *debounce_counters;
  40. static fast_timer_t last_time;
  41. static bool counters_need_update;
  42. static bool matrix_need_update;
  43. static bool cooked_changed;
  44. # define DEBOUNCE_ELAPSED 0
  45. static void update_debounce_counters(uint8_t num_rows, uint8_t elapsed_time);
  46. static void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows);
  47. // we use num_rows rather than MATRIX_ROWS to support split keyboards
  48. void debounce_init(uint8_t num_rows) {
  49. debounce_counters = (debounce_counter_t *)malloc(num_rows * MATRIX_COLS * sizeof(debounce_counter_t));
  50. int i = 0;
  51. for (uint8_t r = 0; r < num_rows; r++) {
  52. for (uint8_t c = 0; c < MATRIX_COLS; c++) {
  53. debounce_counters[i++] = DEBOUNCE_ELAPSED;
  54. }
  55. }
  56. }
  57. void debounce_free(void) {
  58. free(debounce_counters);
  59. debounce_counters = NULL;
  60. }
  61. bool debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) {
  62. bool updated_last = false;
  63. cooked_changed = false;
  64. if (counters_need_update) {
  65. fast_timer_t now = timer_read_fast();
  66. fast_timer_t elapsed_time = TIMER_DIFF_FAST(now, last_time);
  67. last_time = now;
  68. updated_last = true;
  69. if (elapsed_time > UINT8_MAX) {
  70. elapsed_time = UINT8_MAX;
  71. }
  72. if (elapsed_time > 0) {
  73. update_debounce_counters(num_rows, elapsed_time);
  74. }
  75. }
  76. if (changed || matrix_need_update) {
  77. if (!updated_last) {
  78. last_time = timer_read_fast();
  79. }
  80. transfer_matrix_values(raw, cooked, num_rows);
  81. }
  82. return cooked_changed;
  83. }
  84. // If the current time is > debounce counter, set the counter to enable input.
  85. static void update_debounce_counters(uint8_t num_rows, uint8_t elapsed_time) {
  86. counters_need_update = false;
  87. matrix_need_update = false;
  88. debounce_counter_t *debounce_pointer = debounce_counters;
  89. for (uint8_t row = 0; row < num_rows; row++) {
  90. for (uint8_t col = 0; col < MATRIX_COLS; col++) {
  91. if (*debounce_pointer != DEBOUNCE_ELAPSED) {
  92. if (*debounce_pointer <= elapsed_time) {
  93. *debounce_pointer = DEBOUNCE_ELAPSED;
  94. matrix_need_update = true;
  95. } else {
  96. *debounce_pointer -= elapsed_time;
  97. counters_need_update = true;
  98. }
  99. }
  100. debounce_pointer++;
  101. }
  102. }
  103. }
  104. // upload from raw_matrix to final matrix;
  105. static void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows) {
  106. matrix_need_update = false;
  107. debounce_counter_t *debounce_pointer = debounce_counters;
  108. for (uint8_t row = 0; row < num_rows; row++) {
  109. matrix_row_t delta = raw[row] ^ cooked[row];
  110. matrix_row_t existing_row = cooked[row];
  111. for (uint8_t col = 0; col < MATRIX_COLS; col++) {
  112. matrix_row_t col_mask = (ROW_SHIFTER << col);
  113. if (delta & col_mask) {
  114. if (*debounce_pointer == DEBOUNCE_ELAPSED) {
  115. *debounce_pointer = DEBOUNCE;
  116. counters_need_update = true;
  117. existing_row ^= col_mask; // flip the bit.
  118. cooked_changed = true;
  119. }
  120. }
  121. debounce_pointer++;
  122. }
  123. cooked[row] = existing_row;
  124. }
  125. }
  126. #else
  127. # include "none.c"
  128. #endif