2014-05-26 02:20:17 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Kai Ryu <kai1103@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scan matrix
|
|
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
|
|
|
#include "print.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "matrix.h"
|
2016-03-31 10:08:50 +00:00
|
|
|
#include "i2c_wrapper.h"
|
2014-05-26 02:20:17 +00:00
|
|
|
#include "kimera.h"
|
2014-11-05 07:58:37 +00:00
|
|
|
#include "keymap_in_eeprom.h"
|
2016-03-31 09:52:43 +00:00
|
|
|
#include "timer.h"
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef DEBOUNCE
|
|
|
|
# define DEBOUNCE 5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* matrix state(1:on, 0:off) */
|
|
|
|
static matrix_row_t matrix[MATRIX_ROWS];
|
2016-03-31 09:52:43 +00:00
|
|
|
|
|
|
|
#define IMPROVED_DEBOUNCE 1
|
|
|
|
|
|
|
|
#if IMPROVED_DEBOUNCE
|
|
|
|
#define DEBOUNCE_MASK ((1 << DEBOUNCE) - 1)
|
|
|
|
static uint8_t matrix_current_row;
|
|
|
|
static uint16_t matrix_row_timestamp[MATRIX_ROWS];
|
|
|
|
static uint8_t matrix_debouncing[MATRIX_ROWS][MATRIX_COLS];
|
|
|
|
#else
|
|
|
|
static uint8_t debouncing = DEBOUNCE;
|
2014-05-26 02:20:17 +00:00
|
|
|
static matrix_row_t matrix_debouncing[MATRIX_ROWS];
|
2016-03-31 09:52:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static uint16_t kimera_scan_timestamp;
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
uint8_t matrix_rows(void)
|
|
|
|
{
|
2014-11-13 10:28:03 +00:00
|
|
|
return kimera_matrix_rows();
|
2014-05-26 02:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
uint8_t matrix_cols(void)
|
|
|
|
{
|
2014-11-13 10:28:03 +00:00
|
|
|
return kimera_matrix_cols();
|
2014-05-26 02:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void matrix_init(void)
|
|
|
|
{
|
|
|
|
// disable JTAG
|
|
|
|
MCUCR = (1<<JTD);
|
|
|
|
MCUCR = (1<<JTD);
|
|
|
|
|
2016-03-31 10:08:50 +00:00
|
|
|
i2c_wrapper_init();
|
|
|
|
_delay_ms(1);
|
|
|
|
|
2014-05-26 02:20:17 +00:00
|
|
|
kimera_init();
|
2016-03-31 09:52:43 +00:00
|
|
|
kimera_scan_timestamp = timer_read();
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
// initialize row and col
|
2014-11-13 10:28:03 +00:00
|
|
|
kimera_unselect_rows();
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
// initialize matrix state: all keys off
|
2016-03-31 09:52:43 +00:00
|
|
|
#if IMPROVED_DEBOUNCE
|
|
|
|
for (uint8_t i = 0; i < matrix_rows(); i++) {
|
|
|
|
matrix[i] = 0;
|
|
|
|
matrix_current_row = 0;
|
|
|
|
matrix_row_timestamp[i] = timer_read();
|
|
|
|
for (uint8_t j = 0; j < matrix_cols(); j++) {
|
|
|
|
matrix_debouncing[i][j] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2014-05-26 07:58:34 +00:00
|
|
|
for (uint8_t i=0; i < matrix_rows(); i++) {
|
2014-05-26 02:20:17 +00:00
|
|
|
matrix[i] = 0;
|
|
|
|
matrix_debouncing[i] = 0;
|
|
|
|
}
|
2016-03-31 09:52:43 +00:00
|
|
|
#endif
|
2014-10-27 07:10:13 +00:00
|
|
|
|
2014-10-31 06:30:32 +00:00
|
|
|
PORTD &= ~(1<<PD4);
|
|
|
|
|
2014-05-26 02:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t matrix_scan(void)
|
|
|
|
{
|
2016-03-31 10:08:50 +00:00
|
|
|
i2c_wrapper_task();
|
2014-10-31 06:30:32 +00:00
|
|
|
|
2016-03-31 09:52:43 +00:00
|
|
|
/* xprintf("Row: %d, %u\n", matrix_current_row, timer_read()); */
|
|
|
|
|
|
|
|
if (timer_elapsed(kimera_scan_timestamp) >= 1000) {
|
|
|
|
xprintf("Scan, %u\n", kimera_scan_timestamp);
|
|
|
|
kimera_scan_timestamp = timer_read();
|
|
|
|
kimera_scan();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if IMPROVED_DEBOUNCE
|
|
|
|
uint16_t elapsed = timer_elapsed(matrix_row_timestamp[matrix_current_row]);
|
|
|
|
if (elapsed >= 1) {
|
|
|
|
matrix_row_timestamp[matrix_current_row] = timer_read();
|
|
|
|
kimera_select_row(matrix_current_row);
|
|
|
|
_delay_us(30);
|
|
|
|
kimera_read_cols();
|
|
|
|
for (uint8_t i = 0; i < matrix_cols(); i++) {
|
|
|
|
uint8_t *debounce = &matrix_debouncing[matrix_current_row][i];
|
|
|
|
uint8_t col = kimera_get_col(matrix_current_row, i);
|
|
|
|
uint8_t count = elapsed;
|
|
|
|
do {
|
|
|
|
*debounce <<= 1;
|
|
|
|
*debounce |= col;
|
|
|
|
} while (--count);
|
|
|
|
matrix_row_t *row = &matrix[matrix_current_row];
|
|
|
|
matrix_row_t mask = ((matrix_row_t)1 << i);
|
|
|
|
switch (*debounce & DEBOUNCE_MASK) {
|
|
|
|
case DEBOUNCE_MASK:
|
|
|
|
#if DEBOUNCE > 1
|
|
|
|
case (DEBOUNCE_MASK >> 1):
|
|
|
|
#if DEBOUNCE > 2
|
|
|
|
case (DEBOUNCE_MASK >> 2):
|
|
|
|
#if DEBOUNCE > 3
|
|
|
|
case (DEBOUNCE_MASK >> 3):
|
|
|
|
#if DEBOUNCE > 4
|
|
|
|
case (DEBOUNCE_MASK >> 4):
|
|
|
|
#if DEBOUNCE > 5
|
|
|
|
case (DEBOUNCE_MASK >> 5):
|
|
|
|
#if DEBOUNCE > 6
|
|
|
|
case (DEBOUNCE_MASK >> 6):
|
|
|
|
#if DEBOUNCE > 7
|
|
|
|
case (DEBOUNCE_MASK >> 7):
|
|
|
|
#if DEBOUNCE > 8
|
|
|
|
case (DEBOUNCE_MASK >> 8):
|
|
|
|
#if DEBOUNCE > 9
|
|
|
|
case (DEBOUNCE_MASK >> 9):
|
|
|
|
#if DEBOUNCE > 10
|
|
|
|
case (DEBOUNCE_MASK >> 10):
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
if ((*row & mask) == 0) {
|
|
|
|
*row |= mask;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#if DEBOUNCE > 1
|
|
|
|
case ((DEBOUNCE_MASK << 1) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 2
|
|
|
|
case ((DEBOUNCE_MASK << 2) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 3
|
|
|
|
case ((DEBOUNCE_MASK << 3) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 4
|
|
|
|
case ((DEBOUNCE_MASK << 4) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 5
|
|
|
|
case ((DEBOUNCE_MASK << 5) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 6
|
|
|
|
case ((DEBOUNCE_MASK << 6) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 7
|
|
|
|
case ((DEBOUNCE_MASK << 7) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 8
|
|
|
|
case ((DEBOUNCE_MASK << 8) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 9
|
|
|
|
case ((DEBOUNCE_MASK << 9) & DEBOUNCE_MASK):
|
|
|
|
#if DEBOUNCE > 10
|
|
|
|
case ((DEBOUNCE_MASK << 10) & DEBOUNCE_MASK):
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
if ((*row & mask) != 0) {
|
|
|
|
*row &= ~mask;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug("bounce!: ");
|
|
|
|
debug_bin8(*debounce & DEBOUNCE_MASK);
|
|
|
|
debug("\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kimera_unselect_rows();
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix_current_row++;
|
|
|
|
if (matrix_current_row >= matrix_rows()) {
|
|
|
|
matrix_current_row = 0;
|
|
|
|
}
|
|
|
|
#else
|
2014-05-26 07:58:34 +00:00
|
|
|
for (uint8_t i = 0; i < matrix_rows(); i++) {
|
2014-11-13 10:28:03 +00:00
|
|
|
kimera_select_row(i);
|
2014-05-26 02:20:17 +00:00
|
|
|
_delay_us(30); // without this wait read unstable value.
|
2016-03-31 09:52:43 +00:00
|
|
|
matrix_row_t cols = kimera_read_row(i);
|
2014-05-26 02:20:17 +00:00
|
|
|
if (matrix_debouncing[i] != cols) {
|
|
|
|
matrix_debouncing[i] = cols;
|
|
|
|
if (debouncing) {
|
|
|
|
debug("bounce!: "); debug_hex(debouncing); debug("\n");
|
|
|
|
}
|
|
|
|
debouncing = DEBOUNCE;
|
|
|
|
}
|
2014-11-13 10:28:03 +00:00
|
|
|
kimera_unselect_rows();
|
2014-05-26 02:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (debouncing) {
|
|
|
|
if (--debouncing) {
|
|
|
|
_delay_ms(1);
|
|
|
|
} else {
|
2014-05-26 07:58:34 +00:00
|
|
|
for (uint8_t i = 0; i < matrix_rows(); i++) {
|
2014-05-26 02:20:17 +00:00
|
|
|
matrix[i] = matrix_debouncing[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-31 09:52:43 +00:00
|
|
|
#endif
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-31 09:52:43 +00:00
|
|
|
#if IMPROVED_DEBOUNCE
|
|
|
|
#else
|
2014-05-26 02:20:17 +00:00
|
|
|
bool matrix_is_modified(void)
|
|
|
|
{
|
|
|
|
if (debouncing) return false;
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-31 09:52:43 +00:00
|
|
|
#endif
|
2014-05-26 02:20:17 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
bool matrix_is_on(uint8_t row, uint8_t col)
|
|
|
|
{
|
|
|
|
return (matrix[row] & ((matrix_row_t)1<<col));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
matrix_row_t matrix_get_row(uint8_t row)
|
|
|
|
{
|
|
|
|
return matrix[row];
|
|
|
|
}
|
|
|
|
|
|
|
|
void matrix_print(void)
|
|
|
|
{
|
2014-11-13 10:40:21 +00:00
|
|
|
print("\nr/c 0123456789ABCDEF0123456789ABCDEF\n");
|
2014-05-26 07:58:34 +00:00
|
|
|
for (uint8_t row = 0; row < matrix_rows(); row++) {
|
2014-05-26 02:20:17 +00:00
|
|
|
phex(row); print(": ");
|
2014-11-28 05:49:25 +00:00
|
|
|
print_bin_reverse32(matrix_get_row(row));
|
2014-05-26 02:20:17 +00:00
|
|
|
print("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t matrix_key_count(void)
|
|
|
|
{
|
|
|
|
uint8_t count = 0;
|
2014-05-26 07:58:34 +00:00
|
|
|
for (uint8_t i = 0; i < matrix_rows(); i++) {
|
2014-11-13 10:40:21 +00:00
|
|
|
count += bitpop32(matrix[i]);
|
2014-05-26 02:20:17 +00:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|