aboutsummaryrefslogtreecommitdiff
path: root/src/mouse/esp32
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-01-29 23:58:04 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-01-30 01:16:18 +0100
commita27a35bd778d9afe9f04e7aed69d950bc4d980e8 (patch)
treecad17cb68da4a210538c15a7fba2289374c4fcc1 /src/mouse/esp32
parentc2e2343054e8d11ebaaf426d6ca105e79e93da6a (diff)
downloadjancity-a27a35bd778d9afe9f04e7aed69d950bc4d980e8.tar.gz
WIP ESP32 port
Diffstat (limited to 'src/mouse/esp32')
-rw-r--r--src/mouse/esp32/src/mouse.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mouse/esp32/src/mouse.c b/src/mouse/esp32/src/mouse.c
new file mode 100644
index 0000000..865d4c1
--- /dev/null
+++ b/src/mouse/esp32/src/mouse.c
@@ -0,0 +1,11 @@
+#include <mouse.h>
+#include <stdbool.h>
+
+void mouse_update(struct mouse *const m)
+{
+}
+
+bool mouse_available(void)
+{
+ return false;
+}