summaryrefslogtreecommitdiff
path: root/interfaces/device.idl
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/device.idl')
-rw-r--r--interfaces/device.idl26
1 files changed, 0 insertions, 26 deletions
diff --git a/interfaces/device.idl b/interfaces/device.idl
deleted file mode 100644
index 1306639..0000000
--- a/interfaces/device.idl
+++ /dev/null
@@ -1,26 +0,0 @@
-include common.idl
-include io.idl
-
-module device {
-
- enum function_id {
- START;
- STOP;
- };
-
- struct function {
- string description;
- int value;
- enum fundtion_id id;
- };
-
- interface device {
- common.error name (out string name);
- common.error execute (in device.function);
- common.error functions (out list <device.function>);
- int id;
- list <io.analog> analog;
- list <io.digital> digital;
- };
-
-};