2010-08-23 08:46:24 +02:00
|
|
|
/*
|
|
|
|
* scan matrix
|
|
|
|
*/
|
2010-10-27 13:51:45 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2010-08-23 08:46:24 +02:00
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
2010-10-27 13:51:45 +02:00
|
|
|
#include "print.h"
|
|
|
|
#include "util.h"
|
2010-10-29 08:17:18 +02:00
|
|
|
#include "controller.h"
|
|
|
|
#include "matrix_skel.h"
|
2010-08-23 08:46:24 +02:00
|
|
|
|
2010-09-12 17:00:58 +02:00
|
|
|
// matrix is active low. (key on: 0/key off: 1)
|
|
|
|
// row: Hi-Z(unselected)/low output(selected)
|
2010-10-08 13:03:16 +02:00
|
|
|
// PD0, PC7, PD7, PF6, PD6, PD1, PD2, PC6, PF7
|
2010-09-12 17:00:58 +02:00
|
|
|
// col: input w/pullup
|
2010-10-08 13:03:16 +02:00
|
|
|
// PB0-PB7
|
2010-09-12 17:00:58 +02:00
|
|
|
|
|
|
|
// matrix state buffer
|
2010-10-29 08:17:18 +02:00
|
|
|
static uint8_t *matrix;
|
|
|
|
static uint8_t *matrix_prev;
|
2010-08-23 08:46:24 +02:00
|
|
|
static uint8_t _matrix0[MATRIX_ROWS];
|
|
|
|
static uint8_t _matrix1[MATRIX_ROWS];
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
static bool matrix_has_ghost_in_row(uint8_t row);
|
2010-08-23 08:46:24 +02:00
|
|
|
static uint8_t read_col(void);
|
2010-09-12 17:00:58 +02:00
|
|
|
static void unselect_rows(void);
|
2010-08-23 08:46:24 +02:00
|
|
|
static void select_row(uint8_t row);
|
|
|
|
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
inline
|
|
|
|
int matrix_rows(void)
|
|
|
|
{
|
|
|
|
return MATRIX_ROWS;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
int matrix_cols(void)
|
|
|
|
{
|
|
|
|
return MATRIX_COLS;
|
|
|
|
}
|
|
|
|
|
2010-09-12 17:00:58 +02:00
|
|
|
// this must be called once before matrix_scan.
|
2010-08-23 08:46:24 +02:00
|
|
|
void matrix_init(void)
|
|
|
|
{
|
2010-09-12 17:00:58 +02:00
|
|
|
// initialize row and col
|
|
|
|
unselect_rows();
|
2010-08-23 08:46:24 +02:00
|
|
|
DDRB = 0x00;
|
|
|
|
PORTB = 0xFF;
|
|
|
|
|
2010-09-12 17:00:58 +02:00
|
|
|
// initialize matrix state: all keys off
|
2010-10-27 13:51:45 +02: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 08:46:24 +02:00
|
|
|
matrix = _matrix0;
|
2010-09-12 17:00:58 +02:00
|
|
|
matrix_prev = _matrix1;
|
2010-08-23 08:46:24 +02:00
|
|
|
}
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
int matrix_scan(void)
|
2010-08-23 08:46:24 +02:00
|
|
|
{
|
|
|
|
uint8_t *tmp;
|
|
|
|
|
2010-09-12 17:00:58 +02:00
|
|
|
tmp = matrix_prev;
|
|
|
|
matrix_prev = matrix;
|
2010-08-23 08:46:24 +02:00
|
|
|
matrix = tmp;
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
|
|
|
select_row(i);
|
2010-08-23 08:46:24 +02:00
|
|
|
_delay_us(30); // without this wait read unstable value.
|
2010-10-27 13:51:45 +02:00
|
|
|
matrix[i] = ~read_col();
|
2010-09-12 17:00:58 +02:00
|
|
|
unselect_rows();
|
2010-08-23 08:46:24 +02:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
bool matrix_is_modified(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
2010-09-12 17:00:58 +02:00
|
|
|
if (matrix[i] != matrix_prev[i])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
bool matrix_has_ghost(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MATRIX_ROWS; i++) {
|
2010-09-12 17:00:58 +02:00
|
|
|
if (matrix_has_ghost_in_row(i))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-27 13:51:45 +02: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 17:00:58 +02:00
|
|
|
// no ghost exists in case less than 2 keys on
|
2010-10-27 13:51:45 +02:00
|
|
|
if (((matrix[row] - 1) & matrix[row]) == 0)
|
2010-09-12 17:00:58 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// ghost exists in case same state as other row
|
|
|
|
for (int i=0; i < MATRIX_ROWS; i++) {
|
2010-10-27 13:51:45 +02:00
|
|
|
if (i != row && (matrix[i] & matrix[row]) == matrix[row])
|
|
|
|
return true;
|
2010-09-12 17:00:58 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-23 08:46:24 +02:00
|
|
|
static uint8_t read_col(void)
|
|
|
|
{
|
|
|
|
return PINB;
|
|
|
|
}
|
|
|
|
|
2010-10-27 13:51:45 +02:00
|
|
|
static void unselect_rows(void)
|
|
|
|
{
|
2010-09-12 17:00:58 +02:00
|
|
|
DDRD = 0x00;
|
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
}
|
|
|
|
|
2010-08-23 08:46:24 +02:00
|
|
|
static void select_row(uint8_t row)
|
|
|
|
{
|
|
|
|
switch (row) {
|
|
|
|
case 0:
|
|
|
|
DDRD = (1<<0);
|
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 1:
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRD = 0x00;
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTD = 0x00;
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRC = (1<<7);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 2:
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRD = (1<<7);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 3:
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRD = 0x00;
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRF = (1<<6);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
DDRD = (1<<6);
|
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 5:
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRD = (1<<1);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 6:
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRD = (1<<2);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTD = 0x00;
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRC = 0x00;
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
DDRD = 0x00;
|
|
|
|
PORTD = 0x00;
|
2010-10-04 11:57:03 +02:00
|
|
|
DDRC = (1<<6);
|
2010-08-23 08:46:24 +02:00
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = 0x00;
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
DDRD = 0x00;
|
|
|
|
PORTD = 0x00;
|
|
|
|
DDRC = 0x00;
|
|
|
|
PORTC = 0x00;
|
|
|
|
DDRF = (1<<7);
|
|
|
|
PORTF = 0x00;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|