2010-08-23 06:46:24 +00:00
|
|
|
/*
|
|
|
|
* scan matrix
|
|
|
|
*/
|
2010-10-27 11:51:45 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2010-08-23 06:46:24 +00:00
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
2010-10-27 11:51:45 +00:00
|
|
|
#include "print.h"
|
|
|
|
#include "util.h"
|
2010-10-29 06:17:18 +00:00
|
|
|
#include "matrix_skel.h"
|
2010-08-23 06:46:24 +00:00
|
|
|
|
2010-09-12 15:00:58 +00:00
|
|
|
|
2011-01-02 14:52:13 +00:00
|
|
|
// matrix state buffer (key on: 1/key off: 0)
|
2010-10-29 06:17:18 +00:00
|
|
|
static uint8_t *matrix;
|
|
|
|
static uint8_t *matrix_prev;
|
2010-08-23 06:46:24 +00:00
|
|
|
static uint8_t _matrix0[MATRIX_ROWS];
|
|
|
|
static uint8_t _matrix1[MATRIX_ROWS];
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
static bool matrix_has_ghost_in_row(uint8_t row);
|
2010-08-23 06:46:24 +00:00
|
|
|
static uint8_t read_col(void);
|
2010-09-12 15:00:58 +00:00
|
|
|
static void unselect_rows(void);
|
2010-08-23 06:46:24 +00:00
|
|
|
static void select_row(uint8_t row);
|
|
|
|
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
inline
|
|
|
|
int matrix_rows(void)
|
|
|
|
{
|
|
|
|
return MATRIX_ROWS;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
int matrix_cols(void)
|
|
|
|
{
|
|
|
|
return MATRIX_COLS;
|
|
|
|
}
|
|
|
|
|
2010-09-12 15:00:58 +00:00
|
|
|
// this must be called once before matrix_scan.
|
2010-08-23 06:46:24 +00:00
|
|
|
void matrix_init(void)
|
|
|
|
{
|
2010-09-12 15:00:58 +00:00
|
|
|
// initialize row and col
|
|
|
|
unselect_rows();
|
2011-01-02 14:52:13 +00:00
|
|
|
// Input with pull-up(DDR:0, PORT:1)
|
2010-08-23 06:46:24 +00:00
|
|
|
DDRB = 0x00;
|
|
|
|
PORTB = 0xFF;
|
|
|
|
|
2010-09-12 15:00:58 +00:00
|
|
|
// initialize matrix state: all keys off
|
2010-10-27 11:51:45 +00:00
|
|
|
for (int i=0; i < MATRIX_ROWS; i++) _matrix0[i] = 0x00;
|
|
|
|
for (int i=0; i < MATRIX_ROWS; i++) _matrix1[i] = 0x00;
|
2010-08-23 06:46:24 +00:00
|
|
|
matrix = _matrix0;
|
2010-09-12 15:00:58 +00:00
|
|
|
matrix_prev = _matrix1;
|
2010-08-23 06:46:24 +00:00
|
|
|
}
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
int matrix_scan(void)
|
2010-08-23 06:46:24 +00:00
|
|
|
{
|
|
|
|
uint8_t *tmp;
|
|
|
|
|
2010-09-12 15:00:58 +00:00
|
|
|
tmp = matrix_prev;
|
|
|
|
matrix_prev = matrix;
|
2010-08-23 06:46:24 +00:00
|
|
|
matrix = tmp;
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
2011-01-02 14:52:13 +00:00
|
|
|
unselect_rows();
|
2010-10-27 11:51:45 +00:00
|
|
|
select_row(i);
|
2010-08-23 06:46:24 +00:00
|
|
|
_delay_us(30); // without this wait read unstable value.
|
2010-10-27 11:51:45 +00:00
|
|
|
matrix[i] = ~read_col();
|
2010-08-23 06:46:24 +00:00
|
|
|
}
|
2011-01-02 14:52:13 +00:00
|
|
|
unselect_rows();
|
2010-08-23 06:46:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
bool matrix_is_modified(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
2010-09-12 15:00:58 +00:00
|
|
|
if (matrix[i] != matrix_prev[i])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
bool matrix_has_ghost(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
2010-09-12 15:00:58 +00:00
|
|
|
if (matrix_has_ghost_in_row(i))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
inline
|
|
|
|
bool matrix_is_on(int row, int col)
|
|
|
|
{
|
|
|
|
return (matrix[row] & (1<<col));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
uint16_t matrix_get_row(int row)
|
|
|
|
{
|
|
|
|
return matrix[row];
|
|
|
|
}
|
|
|
|
|
|
|
|
void matrix_print(void)
|
|
|
|
{
|
|
|
|
print("\nr/c 01234567\n");
|
|
|
|
for (int row = 0; row < matrix_rows(); row++) {
|
|
|
|
phex(row); print(": ");
|
|
|
|
pbin_reverse(matrix_get_row(row));
|
|
|
|
if (matrix_has_ghost_in_row(row)) {
|
|
|
|
print(" <ghost");
|
|
|
|
}
|
|
|
|
print("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int matrix_key_count(void)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
|
|
|
count += bitpop(matrix[i]);
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool matrix_has_ghost_in_row(uint8_t row)
|
|
|
|
{
|
2010-09-12 15:00:58 +00:00
|
|
|
// no ghost exists in case less than 2 keys on
|
2010-10-27 11:51:45 +00:00
|
|
|
if (((matrix[row] - 1) & matrix[row]) == 0)
|
2010-09-12 15:00:58 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// ghost exists in case same state as other row
|
|
|
|
for (int i=0; i < MATRIX_ROWS; i++) {
|
2010-10-27 11:51:45 +00:00
|
|
|
if (i != row && (matrix[i] & matrix[row]) == matrix[row])
|
|
|
|
return true;
|
2010-09-12 15:00:58 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-23 06:46:24 +00:00
|
|
|
static uint8_t read_col(void)
|
|
|
|
{
|
|
|
|
return PINB;
|
|
|
|
}
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
static void unselect_rows(void)
|
|
|
|
{
|
2011-01-02 14:52:13 +00:00
|
|
|
// Hi-Z(DDR:0, PORT:0) to unselect
|
|
|
|
DDRC &= ~0b11000000; // PC: 7,6
|
|
|
|
PORTC &= ~0b11000000;
|
|
|
|
DDRD &= ~0b11000111; // PD: 7,6,2,1,0
|
|
|
|
PORTD &= ~0b11000111;
|
|
|
|
DDRF &= ~0b11000000; // PF: 7,6
|
|
|
|
PORTF &= ~0b11000000;
|
2010-09-12 15:00:58 +00:00
|
|
|
}
|
|
|
|
|
2010-08-23 06:46:24 +00:00
|
|
|
static void select_row(uint8_t row)
|
|
|
|
{
|
2011-01-02 14:52:13 +00:00
|
|
|
// Output low(DDR:1, PORT:0) to select
|
|
|
|
// row: 0 1 2 3 4 5 6 7 8
|
|
|
|
// pin: PD0, PC7, PD7, PF6, PD6, PD1, PD2, PC6, PF7
|
2010-08-23 06:46:24 +00:00
|
|
|
switch (row) {
|
|
|
|
case 0:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRD |= (1<<0);
|
|
|
|
PORTD &= ~(1<<0);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRC |= (1<<7);
|
|
|
|
PORTC &= ~(1<<7);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRD |= (1<<7);
|
|
|
|
PORTD &= ~(1<<7);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRF |= (1<<6);
|
|
|
|
PORTF &= ~(1<<6);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRD |= (1<<6);
|
|
|
|
PORTD &= ~(1<<6);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRD |= (1<<1);
|
|
|
|
PORTD &= ~(1<<1);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 6:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRD |= (1<<2);
|
|
|
|
PORTD &= ~(1<<2);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 7:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRC |= (1<<6);
|
|
|
|
PORTC &= ~(1<<6);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
case 8:
|
2011-01-02 14:52:13 +00:00
|
|
|
DDRF |= (1<<7);
|
|
|
|
PORTF &= ~(1<<7);
|
2010-08-23 06:46:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|