diff options
author | Peter Eichinger <peter.eichinger@gmail.com> | 2016-01-25 17:46:50 +0100 |
---|---|---|
committer | Peter Eichinger <peter.eichinger@gmail.com> | 2016-01-25 17:46:50 +0100 |
commit | 78192791bc0bb98d7a469f88a77febb3250c5b93 (patch) | |
tree | c20d43cfa5cc4980f8dcf967832e8c913bb84bbe /keyboard/planck/planck.c | |
parent | c5f90eb99b282c7425e151b82f0ca22969a4a275 (diff) | |
parent | e9356dcad5769bc917ab9d3366013b5f193c3ef3 (diff) |
Merge branch 'master' into flicker-fix
Diffstat (limited to 'keyboard/planck/planck.c')
-rw-r--r-- | keyboard/planck/planck.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/keyboard/planck/planck.c b/keyboard/planck/planck.c index b62862af04..63ca54761c 100644 --- a/keyboard/planck/planck.c +++ b/keyboard/planck/planck.c @@ -15,6 +15,11 @@ void * matrix_init_kb(void) { backlight_init_ports(); #endif + #ifdef RGBLIGHT_ENABLE + rgblight_init(); + #endif + + // Turn status LED on DDRE |= (1<<6); PORTE |= (1<<6); @@ -28,4 +33,4 @@ void * matrix_scan_kb(void) { if (matrix_scan_user) { (*matrix_scan_user)(); } -};
\ No newline at end of file +}; |