summaryrefslogtreecommitdiffstats
path: root/protocol/mbed/mbed_driver.cpp
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-06-17 19:22:59 +0200
committertmk <nobody@nowhere>2014-07-30 07:07:43 +0200
commit80c3ff5fa03429f1e4ea15032f665ceb88c9b8c3 (patch)
tree803fe5b419419607146b6ba1db69d24486b1494e /protocol/mbed/mbed_driver.cpp
parente81c70149ecf73256f8bb7d77cefc07f2b91d2be (diff)
downloadqmk_firmware-80c3ff5fa03429f1e4ea15032f665ceb88c9b8c3.tar.gz
qmk_firmware-80c3ff5fa03429f1e4ea15032f665ceb88c9b8c3.tar.xz
Fix build files for mbed
Diffstat (limited to 'protocol/mbed/mbed_driver.cpp')
-rw-r--r--protocol/mbed/mbed_driver.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/protocol/mbed/mbed_driver.cpp b/protocol/mbed/mbed_driver.cpp
new file mode 100644
index 000000000..333f8e378
--- /dev/null
+++ b/protocol/mbed/mbed_driver.cpp
@@ -0,0 +1,41 @@
+#include "HIDKeyboard.h"
+#include "host.h"
+#include "host_driver.h"
+#include "mbed_driver.h"
+
+HIDKeyboard keyboard;
+
+
+/* Host driver */
+static uint8_t keyboard_leds(void);
+static void send_keyboard(report_keyboard_t *report);
+static void send_mouse(report_mouse_t *report);
+static void send_system(uint16_t data);
+static void send_consumer(uint16_t data);
+
+host_driver_t mbed_driver = {
+ keyboard_leds,
+ send_keyboard,
+ send_mouse,
+ send_system,
+ send_consumer
+};
+
+
+static uint8_t keyboard_leds(void)
+{
+ return 0;
+}
+static void send_keyboard(report_keyboard_t *report)
+{
+ keyboard.sendReport(*report);
+}
+static void send_mouse(report_mouse_t *report)
+{
+}
+static void send_system(uint16_t data)
+{
+}
+static void send_consumer(uint16_t data)
+{
+}