summaryrefslogtreecommitdiff
path: root/keyboards/lfkeyboards/mini1800
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/mini1800
parent5bb9da6bca5b7bc58af9eff0e7cab34d2602ec47 (diff)
parent8574bf20d35b21c7b44ba8550fa11b4d100fdbbd (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/lfkeyboards/mini1800')
-rw-r--r--keyboards/lfkeyboards/mini1800/mini1800.c4
-rw-r--r--keyboards/lfkeyboards/mini1800/mini1800.h14
2 files changed, 2 insertions, 16 deletions
diff --git a/keyboards/lfkeyboards/mini1800/mini1800.c b/keyboards/lfkeyboards/mini1800/mini1800.c
index d5f4193c1d..4c897ac693 100644
--- a/keyboards/lfkeyboards/mini1800/mini1800.c
+++ b/keyboards/lfkeyboards/mini1800/mini1800.c
@@ -37,8 +37,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
_delay_ms(500);
#ifdef ISSI_ENABLE
diff --git a/keyboards/lfkeyboards/mini1800/mini1800.h b/keyboards/lfkeyboards/mini1800/mini1800.h
index c4729c9bb8..3e460c8a11 100644
--- a/keyboards/lfkeyboards/mini1800/mini1800.h
+++ b/keyboards/lfkeyboards/mini1800/mini1800.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;