diff options
author | QMK Bot <hello@qmk.fm> | 2021-09-03 16:10:08 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-09-03 16:10:08 +0000 |
commit | 337be283ca6f4f6c95f5ec6b5e0a507e3b4a3b96 (patch) | |
tree | cca95071a58fc3d4a1d28f1ee1ecdd9e75d30dad /keyboards/lfkeyboards/lfk87/lfk87.c | |
parent | 5bb9da6bca5b7bc58af9eff0e7cab34d2602ec47 (diff) | |
parent | 8574bf20d35b21c7b44ba8550fa11b4d100fdbbd (diff) |
Merge remote-tracking branch 'origin/master' into develop
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(); |