summaryrefslogtreecommitdiff
path: root/keyboards/hhkb/yang/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hhkb/yang/config.h')
-rw-r--r--keyboards/hhkb/yang/config.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/keyboards/hhkb/yang/config.h b/keyboards/hhkb/yang/config.h
index e1f24c8c25..6e4ccbbc69 100644
--- a/keyboards/hhkb/yang/config.h
+++ b/keyboards/hhkb/yang/config.h
@@ -28,40 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_POWER_SAVE_TIMEOUT_L2_MS 1800000
#define MATRIX_POWER_SAVE_TIMEOUT_L3_MS 7200000
-#ifdef BLUETOOTH_ENABLE
-# define OUTPUT_DEFAULT OUTPUT_AUTO
-
-# undef SERIAL_UART_BAUD
-# undef SERIAL_UART_DATA
-# undef SERIAL_UART_UBRR
-# undef SERIAL_UART_RXD_VECT
-# undef SERIAL_UART_TXD_READY
-# undef SERIAL_UART_INIT
-
-# define SERIAL_UART_BAUD 76800
-# define SERIAL_UART_DATA UDR1
-# define SERIAL_UART_UBRR (F_CPU / (8UL * SERIAL_UART_BAUD) - 1)
-# define SERIAL_UART_RXD_VECT USART1_RX_vect
-# define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1))
-# define SERIAL_UART_INIT() \
- do { \
- cli(); \
- /* baud rate */ \
- UBRR1L = SERIAL_UART_UBRR; \
- /* baud rate */ \
- UBRR1H = SERIAL_UART_UBRR >> 8; \
- /* enable TX */ \
- UCSR1B |= (0 << TXCIE1) | (1 << TXEN1); \
- /* enable RX */ \
- UCSR1B |= (1 << RXCIE1) | (1 << RXEN1); \
- /* parity: none(00), even(01), odd(11) */ \
- UCSR1C |= (0 << UPM11) | (0 << UPM10); \
- /* 2x speed (error = 0.2%) */ \
- UCSR1A |= (1 << U2X1); \
- sei(); \
- } while (0)
-#endif
-
/*
* Feature disable options
* These options are also useful to firmware size reduction.