diff options
| author | Ryan | 2021-09-03 18:09:30 +0200 |
|---|---|---|
| committer | GitHub | 2021-09-03 18:09:30 +0200 |
| commit | 8574bf20d35b21c7b44ba8550fa11b4d100fdbbd (patch) | |
| tree | d2492bc01a53343a1f86e7f49d85726686e3f6f1 /keyboards/lfkeyboards/lfk87/lfk87.c | |
| parent | a01057d19dfa208fcf5c7cd16689257cb41ac79b (diff) | |
Remove more cruft in keyboard files (#14288)
Diffstat (limited to 'keyboards/lfkeyboards/lfk87/lfk87.c')
| -rw-r--r-- | keyboards/lfkeyboards/lfk87/lfk87.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/lfkeyboards/lfk87/lfk87.c b/keyboards/lfkeyboards/lfk87/lfk87.c index 4b34fcef7e..10fc14a8aa 100644 --- a/keyboards/lfkeyboards/lfk87/lfk87.c +++ b/keyboards/lfkeyboards/lfk87/lfk87.c @@ -32,8 +32,8 @@ void matrix_init_kb(void) set_rgb(32, 0xFF, 0x00, 0x00); // Layer indicator, start red #ifndef AUDIO_ENABLE // If we're not using the audio pin, drive it low - sbi(DDRC, 6); - cbi(PORTC, 6); + setPinOutput(C6); + writePinLow(C6); #endif #ifdef ISSI_ENABLE issi_init(); |