]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
xt_usb: Remove xt_io.h
authortmk <hasu@tmk-kbd.com>
Fri, 2 Mar 2018 05:40:21 +0000 (14:40 +0900)
committertmk <hasu@tmk-kbd.com>
Wed, 14 Mar 2018 12:32:22 +0000 (21:32 +0900)
tmk_core/protocol/xt.h
tmk_core/protocol/xt_interrupt.c
tmk_core/protocol/xt_io.h [deleted file]

index e689109c6d6f305a074e35ad65ca8fc4669948f6..93bc5daf8221f0923617d7a067690f968338e66b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-Copyright 2010,2011,2012,2013 Jun WAKO <wakojun@gmail.com>
+Copyright 2018 Jun WAKO <wakojun@gmail.com>
 Copyright 2016 Ethan Apodaca <papodaca@gmail.com>
 
 This software is licensed with a Modified BSD License.
@@ -39,6 +39,32 @@ POSSIBILITY OF SUCH DAMAGE.
 #ifndef XT_H
 #define XT_H
 
+#define XT_DATA_IN()        do { \
+    XT_DATA_DDR  &= ~(1<<XT_DATA_BIT); \
+    XT_DATA_PORT |=  (1<<XT_DATA_BIT); \
+} while (0)
+
+#define XT_DATA_READ()      (XT_DATA_PIN&(1<<XT_DATA_BIT))
+
+#define XT_DATA_LO()        do { \
+    XT_DATA_PORT &= ~(1<<XT_DATA_BIT); \
+    XT_DATA_DDR  |=  (1<<XT_DATA_BIT); \
+} while (0)
+
+
+#define XT_CLOCK_IN()       do { \
+    XT_CLOCK_DDR  &= ~(1<<XT_CLOCK_BIT); \
+    XT_CLOCK_PORT |=  (1<<XT_CLOCK_BIT); \
+} while (0)
+
+#define XT_CLOCK_READ()     (XT_CLOCK_PIN&(1<<XT_CLOCK_BIT))
+
+#define XT_CLOCK_LO()       do { \
+    XT_CLOCK_PORT &= ~(1<<XT_CLOCK_BIT); \
+    XT_CLOCK_DDR  |=  (1<<XT_CLOCK_BIT); \
+} while (0)
+
+
 void xt_host_init(void);
 uint8_t xt_host_recv(void);
 
index 525dbcf2c318b451177a6aa18253c1a02beaf81b..08af1b9a17c34ac44c04f40f8cf3b6bedaad519c 100644 (file)
@@ -1,5 +1,6 @@
 /*
-Copyright 2010,2011,2012,2013 Jun WAKO <wakojun@gmail.com>
+Copyright 2018 Jun WAKO <wakojun@gmail.com>
+Copyright 2016 Ethan Apodaca <papodaca@gmail.com>
 
 This software is licensed with a Modified BSD License.
 All of this is supposed to be Free Software, Open Source, DFSG-free,
@@ -35,16 +36,11 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 */
 
-/*
- * PS/2 protocol Pin interrupt version
- */
-
 #include <stdbool.h>
 #include <avr/interrupt.h>
 #include <util/delay.h>
 #include "pbuff.h"
 #include "xt.h"
-#include "xt_io.h"
 #include "wait.h"
 #include "print.h"
 
diff --git a/tmk_core/protocol/xt_io.h b/tmk_core/protocol/xt_io.h
deleted file mode 100644 (file)
index 8252e1c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef XT_IO_H
-#define XT_IO_H
-
-#define XT_DATA_IN()        do { \
-    XT_DATA_DDR  &= ~(1<<XT_DATA_BIT); \
-    XT_DATA_PORT |=  (1<<XT_DATA_BIT); \
-} while (0)
-
-#define XT_DATA_READ()      (XT_DATA_PIN&(1<<XT_DATA_BIT))
-
-#define XT_DATA_LO()        do { \
-    XT_DATA_PORT &= ~(1<<XT_DATA_BIT); \
-    XT_DATA_DDR  |=  (1<<XT_DATA_BIT); \
-} while (0)
-
-
-#define XT_CLOCK_IN()       do { \
-    XT_CLOCK_DDR  &= ~(1<<XT_CLOCK_BIT); \
-    XT_CLOCK_PORT |=  (1<<XT_CLOCK_BIT); \
-} while (0)
-
-#define XT_CLOCK_READ()     (XT_CLOCK_PIN&(1<<XT_CLOCK_BIT))
-
-#define XT_CLOCK_LO()       do { \
-    XT_CLOCK_PORT &= ~(1<<XT_CLOCK_BIT); \
-    XT_CLOCK_DDR  |=  (1<<XT_CLOCK_BIT); \
-} while (0)
-
-#endif