aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/helix/pico/serial_config.h
diff options
context:
space:
mode:
authorMakotoKurauchi <pluis@me.com>2018-07-27 06:26:02 +0900
committerDrashna Jaelre <drashna@live.com>2018-07-26 14:26:02 -0700
commit07e0558e9a3607907c8efed6ae0f5e8c53befc8b (patch)
treeefe359ec91db1053d39cc307ceca9fba9fcc2e78 /keyboards/helix/pico/serial_config.h
parentf2bf5a9a749c55c8941e3b17a2416631972b4cc7 (diff)
downloadfirmware-07e0558e9a3607907c8efed6ae0f5e8c53befc8b.tar.gz
firmware-07e0558e9a3607907c8efed6ae0f5e8c53befc8b.tar.bz2
firmware-07e0558e9a3607907c8efed6ae0f5e8c53befc8b.zip
Keyboard: Add HelixPico keyboard (#3502)
Diffstat (limited to 'keyboards/helix/pico/serial_config.h')
-rw-r--r--keyboards/helix/pico/serial_config.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/keyboards/helix/pico/serial_config.h b/keyboards/helix/pico/serial_config.h
new file mode 100644
index 000000000..82c6e4e83
--- /dev/null
+++ b/keyboards/helix/pico/serial_config.h
@@ -0,0 +1,16 @@
+#ifndef SOFT_SERIAL_CONFIG_H
+#define SOFT_SERIAL_CONFIG_H
+
+/* Soft Serial defines */
+#define SERIAL_PIN_DDR DDRD
+#define SERIAL_PIN_PORT PORTD
+#define SERIAL_PIN_INPUT PIND
+#define SERIAL_PIN_MASK _BV(PD2)
+#define SERIAL_PIN_INTERRUPT INT2_vect
+
+#define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
+#define SERIAL_MASTER_BUFFER_LENGTH MATRIX_ROWS/2
+
+//// #error rev2 serial config
+
+#endif /* SOFT_SERIAL_CONFIG_H */