1
0
Fork 0

Remove HHKB RN42 code (#21007)

This commit is contained in:
Ryan 2023-05-22 13:40:34 +10:00 committed by GitHub
parent 36b08d5d69
commit 595f7db384
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 0 additions and 2270 deletions

View file

@ -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.