summaryrefslogtreecommitdiff
path: root/keyboards/handwired/xeal60/serial.h
diff options
context:
space:
mode:
authoralex-ong <the.onga@gmail.com>2019-01-26 16:59:02 +1100
committeralex-ong <the.onga@gmail.com>2019-01-26 16:59:02 +1100
commit3949ab322dcce75f470ddfbe701c8763add69e63 (patch)
tree2318811ba65243b6e3b7165dce08b0dc20f3ed19 /keyboards/handwired/xeal60/serial.h
parent39ca330f103bf85fd29b0fb595469221c9c3680c (diff)
Remove accidental xeal60 commit
Diffstat (limited to 'keyboards/handwired/xeal60/serial.h')
-rw-r--r--keyboards/handwired/xeal60/serial.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/keyboards/handwired/xeal60/serial.h b/keyboards/handwired/xeal60/serial.h
deleted file mode 100644
index 15fe4db7b4..0000000000
--- a/keyboards/handwired/xeal60/serial.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef MY_SERIAL_H
-#define MY_SERIAL_H
-
-#include "config.h"
-#include <stdbool.h>
-
-/* TODO: some defines for interrupt setup */
-#define SERIAL_PIN_DDR DDRD
-#define SERIAL_PIN_PORT PORTD
-#define SERIAL_PIN_INPUT PIND
-#define SERIAL_PIN_MASK _BV(PD0)
-#define SERIAL_PIN_INTERRUPT INT0_vect
-
-#define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
-#define SERIAL_MASTER_BUFFER_LENGTH 1
-
-// Buffers for master - slave communication
-extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH];
-extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH];
-
-void serial_master_init(void);
-void serial_slave_init(void);
-int serial_update_buffers(void);
-bool serial_slave_data_corrupt(void);
-
-#endif