aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/xt.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/xt.h')
-rw-r--r--tmk_core/protocol/xt.h44
1 files changed, 23 insertions, 21 deletions
diff --git a/tmk_core/protocol/xt.h b/tmk_core/protocol/xt.h
index 93bc5daf8..e7e1a13f4 100644
--- a/tmk_core/protocol/xt.h
+++ b/tmk_core/protocol/xt.h
@@ -39,33 +39,35 @@ 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_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_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_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_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_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)
-#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);
+void xt_host_init(void);
uint8_t xt_host_recv(void);
#endif