diff options
author | tmk <nobody@nowhere> | 2014-11-23 13:08:05 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-11-23 13:08:05 +0900 |
commit | 608ebe2686bdb3fdbd0426731cabdf6082c57b53 (patch) | |
tree | 15d306082db9d53bb9c890f62aeeaf4cdab49712 /common/keyboard.h | |
parent | c2d830c07c823c48a17c214b093ec1bab989fb6a (diff) |
Matrix power saving
Diffstat (limited to 'common/keyboard.h')
-rw-r--r-- | common/keyboard.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/keyboard.h b/common/keyboard.h index 60f8a89d1d..6442716fc7 100644 --- a/common/keyboard.h +++ b/common/keyboard.h @@ -62,6 +62,9 @@ void keyboard_init(void); void keyboard_task(void); void keyboard_set_leds(uint8_t leds); +__attribute__ ((weak)) void matrix_power_up(void) {} +__attribute__ ((weak)) void matrix_power_down(void) {} + #ifdef __cplusplus } #endif |