aboutsummaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/mschwingen/modelm/rules.mk2
-rw-r--r--keyboards/nullbitsco/nibble/remote_kb.c1
-rw-r--r--keyboards/nullbitsco/nibble/remote_kb.h1
-rw-r--r--keyboards/nullbitsco/nibble/rules.mk7
4 files changed, 4 insertions, 7 deletions
diff --git a/keyboards/mschwingen/modelm/rules.mk b/keyboards/mschwingen/modelm/rules.mk
index f3af26eee..6775dfa20 100644
--- a/keyboards/mschwingen/modelm/rules.mk
+++ b/keyboards/mschwingen/modelm/rules.mk
@@ -29,7 +29,7 @@ DYNAMIC_MACRO_ENABLE = yes
29UART_DEBUG = no 29UART_DEBUG = no
30 30
31SRC += matrix.c 31SRC += matrix.c
32QUANTUM_LIB_SRC += $(COMMON_DIR)/uart.c \ 32QUANTUM_LIB_SRC += uart.c \
33 spi_master.c 33 spi_master.c
34 34
35OPT_DEFS += -DSLEEP_LED_ENABLE # we need our own sleep callbacks to turn of WS2812 LEDs 35OPT_DEFS += -DSLEEP_LED_ENABLE # we need our own sleep callbacks to turn of WS2812 LEDs
diff --git a/keyboards/nullbitsco/nibble/remote_kb.c b/keyboards/nullbitsco/nibble/remote_kb.c
index 2e36f5f22..7a914993f 100644
--- a/keyboards/nullbitsco/nibble/remote_kb.c
+++ b/keyboards/nullbitsco/nibble/remote_kb.c
@@ -27,6 +27,7 @@ This will require a new communication protocol, as the current one is limited.
27*/ 27*/
28 28
29#include "remote_kb.h" 29#include "remote_kb.h"
30#include "uart.h"
30 31
31uint8_t 32uint8_t
32 msg[UART_MSG_LEN], 33 msg[UART_MSG_LEN],
diff --git a/keyboards/nullbitsco/nibble/remote_kb.h b/keyboards/nullbitsco/nibble/remote_kb.h
index e2b24655b..f4b5c43f5 100644
--- a/keyboards/nullbitsco/nibble/remote_kb.h
+++ b/keyboards/nullbitsco/nibble/remote_kb.h
@@ -16,7 +16,6 @@
16#pragma once 16#pragma once
17 17
18#include "quantum.h" 18#include "quantum.h"
19#include "tmk_core/common/uart.h"
20 19
21#define SERIAL_UART_BAUD 153600 //low error rate for 32u4 @ 16MHz 20#define SERIAL_UART_BAUD 153600 //low error rate for 32u4 @ 16MHz
22 21
diff --git a/keyboards/nullbitsco/nibble/rules.mk b/keyboards/nullbitsco/nibble/rules.mk
index 683e29086..934021402 100644
--- a/keyboards/nullbitsco/nibble/rules.mk
+++ b/keyboards/nullbitsco/nibble/rules.mk
@@ -1,9 +1,6 @@
1# MCU name 1# MCU name
2MCU = atmega32u4 2MCU = atmega32u4
3 3
4# Interrupt driven control endpoint task(+60)
5OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
6
7# Bootloader selection 4# Bootloader selection
8BOOTLOADER = atmel-dfu 5BOOTLOADER = atmel-dfu
9 6
@@ -31,5 +28,5 @@ CUSTOM_MATRIX = lite # Lite custom matrix
31SRC += matrix.c \ 28SRC += matrix.c \
32 bitc_led.c \ 29 bitc_led.c \
33 big_led.c \ 30 big_led.c \
34 remote_kb.c \ 31 remote_kb.c
35 tmk_core/common/uart.c 32QUANTUM_LIB_SRC += uart.c