diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2016-06-23 22:18:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-23 22:18:20 -0400 |
| commit | 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b (patch) | |
| tree | 2777e5c95bad3f5a9773fc58524a6ad99df63738 /tmk_core/common/matrix.h | |
| parent | ba116ceb496011bb35ce074a3ba8c2448f059260 (diff) | |
| download | qmk_firmware-13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b.tar.gz qmk_firmware-13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b.zip | |
Backlight abstraction and other changes (#439)
* redoes matrix pins, abstracts backlight code for B5,6,7
* slimming down keyboard stuff, backlight breathing implemented
* don't call backlight init when no pin
* cleans up user/kb/quantum calls, keyboard files
* fix pvc atomic
* replaces CHANNEL with correct var in breathing
* removes .hexs, updates readmes, updates template
* cleans-up clueboards, readmes to lowercase
* updates readme
Diffstat (limited to 'tmk_core/common/matrix.h')
| -rw-r--r-- | tmk_core/common/matrix.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index 5f380aaab..5f2f831b4 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h | |||
| @@ -76,6 +76,13 @@ void matrix_power_down(void); | |||
| 76 | /* executes code for Quantum */ | 76 | /* executes code for Quantum */ |
| 77 | void matrix_init_quantum(void); | 77 | void matrix_init_quantum(void); |
| 78 | void matrix_scan_quantum(void); | 78 | void matrix_scan_quantum(void); |
| 79 | |||
| 80 | void matrix_init_kb(void); | ||
| 81 | void matrix_scan_kb(void); | ||
| 82 | |||
| 83 | void matrix_init_user(void); | ||
| 84 | void matrix_scan_user(void); | ||
| 85 | |||
| 79 | #ifdef __cplusplus | 86 | #ifdef __cplusplus |
| 80 | } | 87 | } |
| 81 | #endif | 88 | #endif |
