2011-07-20 15:32:52 +00:00
|
|
|
/*
|
2016-05-25 03:55:29 +00:00
|
|
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
2011-07-20 15:32:52 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2020-05-30 20:14:59 +00:00
|
|
|
#pragma once
|
2011-01-02 14:52:13 +00:00
|
|
|
|
2012-06-30 04:26:09 +00:00
|
|
|
|
2016-05-25 03:55:29 +00:00
|
|
|
/* key matrix size */
|
2020-05-30 20:14:59 +00:00
|
|
|
#define MATRIX_ROWS 8
|
2011-01-02 14:52:13 +00:00
|
|
|
#define MATRIX_COLS 8
|
|
|
|
|
|
|
|
/*
|
2013-03-21 06:34:36 +00:00
|
|
|
* Feature disable options
|
|
|
|
* These options are also useful to firmware size reduction.
|
2016-05-25 03:55:29 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-21 06:34:36 +00:00
|
|
|
/* disable debug print */
|
|
|
|
//#define NO_DEBUG
|
|
|
|
|
|
|
|
/* disable print */
|
|
|
|
//#define NO_PRINT
|
|
|
|
|
|
|
|
/* disable action features */
|
2013-03-31 13:47:19 +00:00
|
|
|
//#define NO_ACTION_LAYER
|
2013-03-21 06:34:36 +00:00
|
|
|
//#define NO_ACTION_TAPPING
|
|
|
|
//#define NO_ACTION_ONESHOT
|