2011-07-20 17:32:52 +02:00
|
|
|
/*
|
|
|
|
Copyright 2011 Jun Wako <wakojun@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/>.
|
|
|
|
*/
|
|
|
|
|
2011-02-21 07:43:17 +01:00
|
|
|
#ifndef MATRIX_H
|
|
|
|
#define MATRIX_H
|
2010-10-23 18:17:26 +02:00
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
#include <stdint.h>
|
2010-10-23 18:17:26 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
|
|
|
|
#if (MATRIX_COLS <= 8)
|
|
|
|
typedef uint8_t matrix_row_t;
|
|
|
|
#elif (MATRIX_COLS <= 16)
|
|
|
|
typedef uint16_t matrix_row_t;
|
|
|
|
#elif (MATRIX_COLS <= 32)
|
|
|
|
typedef uint32_t matrix_row_t;
|
|
|
|
#else
|
|
|
|
#error "MATRIX_COLS: invalid value"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MATRIX_IS_ON(row, col) (matrix_get_row(row) && (1<<col))
|
|
|
|
|
|
|
|
|
2015-01-04 09:03:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-10-23 18:17:26 +02:00
|
|
|
/* number of matrix rows */
|
2011-01-06 07:18:55 +01:00
|
|
|
uint8_t matrix_rows(void);
|
2010-10-23 18:17:26 +02:00
|
|
|
/* number of matrix columns */
|
2011-01-06 07:18:55 +01:00
|
|
|
uint8_t matrix_cols(void);
|
2015-05-17 12:34:34 +02:00
|
|
|
/* should be called at early stage of startup before matrix_init.(optional) */
|
|
|
|
void matrix_setup(void);
|
|
|
|
/* intialize matrix for scaning. */
|
2010-10-23 18:17:26 +02:00
|
|
|
void matrix_init(void);
|
|
|
|
/* scan all key states on matrix */
|
2011-01-06 07:18:55 +01:00
|
|
|
uint8_t matrix_scan(void);
|
2010-10-23 18:17:26 +02:00
|
|
|
/* whether modified from previous scan. used after matrix_scan. */
|
2013-03-12 08:05:50 +01:00
|
|
|
bool matrix_is_modified(void) __attribute__ ((deprecated));
|
2010-10-26 14:32:45 +02:00
|
|
|
/* whether a swtich is on */
|
2011-01-06 07:18:55 +01:00
|
|
|
bool matrix_is_on(uint8_t row, uint8_t col);
|
2010-10-23 18:17:26 +02:00
|
|
|
/* matrix state on row */
|
2015-01-04 09:03:47 +01:00
|
|
|
matrix_row_t matrix_get_row(uint8_t row);
|
2010-10-23 18:17:26 +02:00
|
|
|
/* print matrix for debug */
|
2012-10-17 17:10:20 +02:00
|
|
|
void matrix_print(void);
|
2010-10-23 18:17:26 +02:00
|
|
|
|
|
|
|
|
2014-11-23 05:08:05 +01:00
|
|
|
/* power control */
|
|
|
|
void matrix_power_up(void);
|
|
|
|
void matrix_power_down(void);
|
|
|
|
|
2015-10-27 17:42:30 +01:00
|
|
|
/* keyboard-specific setup/loop functionality */
|
2016-05-15 06:27:32 +02:00
|
|
|
void matrix_init_quantum(void);
|
|
|
|
void matrix_scan_quantum(void);
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2015-01-04 09:03:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-11-23 05:08:05 +01:00
|
|
|
|
2010-10-23 18:17:26 +02:00
|
|
|
#endif
|