summaryrefslogtreecommitdiff
path: root/keyboards/lfkeyboards/lfk87/lfk87.h
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-09-03 16:10:08 +0000
committerQMK Bot <hello@qmk.fm>2021-09-03 16:10:08 +0000
commit337be283ca6f4f6c95f5ec6b5e0a507e3b4a3b96 (patch)
treecca95071a58fc3d4a1d28f1ee1ecdd9e75d30dad /keyboards/lfkeyboards/lfk87/lfk87.h
parent5bb9da6bca5b7bc58af9eff0e7cab34d2602ec47 (diff)
parent8574bf20d35b21c7b44ba8550fa11b4d100fdbbd (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/lfkeyboards/lfk87/lfk87.h')
-rw-r--r--keyboards/lfkeyboards/lfk87/lfk87.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/keyboards/lfkeyboards/lfk87/lfk87.h b/keyboards/lfkeyboards/lfk87/lfk87.h
index 4e079687dd..1b1368659b 100644
--- a/keyboards/lfkeyboards/lfk87/lfk87.h
+++ b/keyboards/lfkeyboards/lfk87/lfk87.h
@@ -1,23 +1,9 @@
#pragma once
-/* if the kb.h file exists (because we're running from qmkbuilder) include it */
-#if __has_include("kb.h")
-#include "kb.h"
-#endif
-
#include "quantum.h"
#include "matrix.h"
#include <avr/sfr_defs.h>
-#ifndef cbi
-#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
-#endif
-
-#ifndef sbi
-#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
-#endif
-
-
typedef struct RGB_Color {
uint16_t red;
uint16_t green;