summaryrefslogtreecommitdiff
path: root/keyboards/dichotomy/config.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-12-15 22:00:39 +1100
committerGitHub <noreply@github.com>2021-12-15 11:00:39 +0000
commitc12268807d8622a05dc445e6101a575eae16860d (patch)
treeaa9c32aac0a35235143c012ca1d021fe43b0c818 /keyboards/dichotomy/config.h
parentc0bb15315170f9265143833ad879b7c8f87b06ac (diff)
Migrate serial_uart usages to UART driver (#15479)
* Migrate Thermal Printer feature to UART driver * Migrate 40percentclub UT47 to UART driver * Migrate Centromere to UART driver * Migrate Chimera Ergo to UART driver * Migrate Chimera Let's Split to UART driver * Migrate Chimera Ortho to UART driver * Migrate Chimera Ortho Plus to UART driver * Migrate Comet46 to UART driver * Migrate Palm USB converter to UART driver * Migrate Sun USB converter to UART driver * Migrate Dichotomy to UART driver * Migrate Honeycomb to UART driver * Migrate Mitosis to UART driver * Migrate Redox W to UART driver * Migrate Uni660 to UART driver * Migrate Telophase to UART driver
Diffstat (limited to 'keyboards/dichotomy/config.h')
-rw-r--r--keyboards/dichotomy/config.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/keyboards/dichotomy/config.h b/keyboards/dichotomy/config.h
index 03e19b1388..40e7f18e6f 100644
--- a/keyboards/dichotomy/config.h
+++ b/keyboards/dichotomy/config.h
@@ -56,12 +56,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define NO_ACTION_ONESHOT
//#define NO_ACTION_MACRO
//#define NO_ACTION_FUNCTION
-
-//UART settings for communication with the RF microcontroller
-#define SERIAL_UART_BAUD 1000000
-#define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1))
-#define SERIAL_UART_INIT_CUSTOM \
- /* enable TX and RX */ \
- UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
- /* 8-bit data */ \
- UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);