diff options
author | Nikolaus Wittenstein <nikolaus.wittenstein@gmail.com> | 2017-02-06 01:42:00 +0100 |
---|---|---|
committer | Nikolaus Wittenstein <nikolaus.wittenstein@gmail.com> | 2017-02-06 01:47:33 +0100 |
commit | 8cbf61c91923e5399b158f7f9258096cb0089ce2 (patch) | |
tree | eb525287e392da707d5319296da1c8b6aaf815ef /quantum/template | |
parent | d961c80df2391631f7b3f46afa595ce93f51f217 (diff) | |
download | qmk_firmware-8cbf61c91923e5399b158f7f9258096cb0089ce2.tar.gz qmk_firmware-8cbf61c91923e5399b158f7f9258096cb0089ce2.tar.xz |
Add new DIODE_DIRECTION option
The previous two options were COL2ROW, ROW2COL; this adds CUSTOM_MATRIX
to disable the built-in matrix scanning code.
Most notably, this obviates the need to set MATRIX_ROW_PINS or
MATRIX_COL_PINS.
Diffstat (limited to 'quantum/template')
-rw-r--r-- | quantum/template/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/template/config.h b/quantum/template/config.h index b02f0c7eb..c61c4a618 100644 --- a/quantum/template/config.h +++ b/quantum/template/config.h @@ -46,7 +46,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MATRIX_COL_PINS { F1, F0, B0 } #define UNUSED_PINS -/* COL2ROW or ROW2COL */ +/* COL2ROW, ROW2COL, or CUSTOM_MATRIX */ #define DIODE_DIRECTION COL2ROW // #define BACKLIGHT_PIN B7 |