diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 16:32:37 -0400 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 16:32:37 -0400 |
| commit | 35a81f5b8b081e1607a7c04489b01f551c3213cc (patch) | |
| tree | 4671909bd5ac7c3ca7afaf60fb6a70106f5090dc /quantum/matrix.c | |
| parent | 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 (diff) | |
| download | qmk_firmware-35a81f5b8b081e1607a7c04489b01f551c3213cc.tar.gz qmk_firmware-35a81f5b8b081e1607a7c04489b01f551c3213cc.zip | |
added ergodox
Diffstat (limited to 'quantum/matrix.c')
| -rw-r--r-- | quantum/matrix.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/matrix.c b/quantum/matrix.c index 97642a4a4..95bf4c097 100644 --- a/quantum/matrix.c +++ b/quantum/matrix.c | |||
| @@ -47,6 +47,16 @@ static void init_cols(void); | |||
| 47 | static void unselect_rows(void); | 47 | static void unselect_rows(void); |
| 48 | static void select_row(uint8_t row); | 48 | static void select_row(uint8_t row); |
| 49 | 49 | ||
| 50 | __attribute__ ((weak)) | ||
| 51 | void * matrix_init_kb(void) { | ||
| 52 | |||
| 53 | }; | ||
| 54 | |||
| 55 | __attribute__ ((weak)) | ||
| 56 | void * matrix_scan_kb(void) { | ||
| 57 | |||
| 58 | }; | ||
| 59 | |||
| 50 | inline | 60 | inline |
| 51 | uint8_t matrix_rows(void) | 61 | uint8_t matrix_rows(void) |
| 52 | { | 62 | { |
