summaryrefslogtreecommitdiff
path: root/adb.h
diff options
context:
space:
mode:
authortmk2011-01-13 01:26:33 +0900
committertmk2011-01-13 01:51:59 +0900
commit56e098d76e7d2a843a66f3a6e409f1d38fe7feac (patch)
treeffbf7b0ca3ca0b8717528748a7d0f1e973584624 /adb.h
parent1f5cd6d7dcbd18f2b647631600df13a0f6d64d25 (diff)
ADB to USB keyboard converter
Diffstat (limited to 'adb.h')
-rw-r--r--adb.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/adb.h b/adb.h
new file mode 100644
index 000000000..8f1673547
--- /dev/null
+++ b/adb.h
@@ -0,0 +1,18 @@
+#ifndef ADB_H
+#define ADB_H
+
+#include <stdbool.h>
+
+#if !(defined(ADB_PORT) && \
+ defined(ADB_PIN) && \
+ defined(ADB_DDR) && \
+ defined(ADB_DATA_BIT))
+# error "ADB port setting is required in config.h"
+#endif
+
+// ADB host
+void adb_host_init(void);
+bool adb_host_psw(void);
+uint16_t adb_host_kbd_recv(void);
+
+#endif