diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-30 07:04:58 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-30 07:04:58 +0200 |
commit | 229004a08331c4cd50887531295020ccc8aefbdc (patch) | |
tree | 30096eb80e44d9dc9a2453e7e317012d0c054f5a /bundle | |
parent | 8642245df43a0d4636e3c0a1d2a9d3c723dd962b (diff) | |
download | synthpod-229004a08331c4cd50887531295020ccc8aefbdc.tar.xz |
prototype ComPort infrastructure.
* only ComPort sinks working for now.
Diffstat (limited to 'bundle')
-rw-r--r-- | bundle/synthpod_bundle.ttl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bundle/synthpod_bundle.ttl b/bundle/synthpod_bundle.ttl index 7fcfaba0..6b6ef86c 100644 --- a/bundle/synthpod_bundle.ttl +++ b/bundle/synthpod_bundle.ttl @@ -53,6 +53,10 @@ synthpod:OSCPort a rdfs:Class ; rdfs:subClassOf lv2:Port . +synthpod:ComPort + a rdfs:Class ; + rdfs:subClassOf lv2:Port . + # Maintainer omk:me a foaf:Person ; @@ -157,6 +161,17 @@ synthpod:sink lv2:symbol "control_sink_4" ; lv2:name "Control Sink 4" ; pg:group synthpod:group_sink ; + ] , [ + # com in + a lv2:InputPort , + synthpod:ComPort , + atom:AtomPort ; + atom:bufferType atom:Sequence ; + atom:supports atom:Object ; + lv2:index 7 ; + lv2:symbol "com_sink" ; + lv2:name "Com Sink" ; + pg:group synthpod:group_sink ; ] . # Source Plugin @@ -237,6 +252,17 @@ synthpod:source lv2:symbol "control_source_4" ; lv2:name "Control Source 4" ; pg:group synthpod:group_source ; + ] , [ + # com out + a lv2:OutputPort , + synthpod:ComPort , + atom:AtomPort ; + atom:bufferType atom:Sequence ; + atom:supports atom:Object ; + lv2:index 7 ; + lv2:symbol "com_sink" ; + lv2:name "Com Sink" ; + pg:group synthpod:group_source ; ] . # MIDI Sink Plugin |