summaryrefslogtreecommitdiff
path: root/daemon/src/Gpio.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-10-16 14:39:18 +0200
committerAki <please@ignore.pl>2021-10-16 14:39:18 +0200
commite811b2f7a084ee34e37b6eb79b9dc2f14d9d1dac (patch)
treed1abd73302bba47e97bf98debd20d263a2447556 /daemon/src/Gpio.cpp
parentf68fb3b96b593f56ec70ad17f216fe3aedbc020d (diff)
downloadhwd-e811b2f7a084ee34e37b6eb79b9dc2f14d9d1dac.zip
hwd-e811b2f7a084ee34e37b6eb79b9dc2f14d9d1dac.tar.gz
hwd-e811b2f7a084ee34e37b6eb79b9dc2f14d9d1dac.tar.bz2
Added Gpio and Assembly stubs
Diffstat (limited to 'daemon/src/Gpio.cpp')
-rw-r--r--daemon/src/Gpio.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/daemon/src/Gpio.cpp b/daemon/src/Gpio.cpp
new file mode 100644
index 0000000..656c585
--- /dev/null
+++ b/daemon/src/Gpio.cpp
@@ -0,0 +1,11 @@
+#include "Gpio.h"
+
+#include <rpc/server.h>
+
+#include "Assembly.h"
+
+
+void Gpio::apply(AssemblyContext ctx)
+{
+ ctx.bind("nothing", []{});
+}