Skip to content
Snippets Groups Projects
Commit 43846e33 authored by Tim Übelhör's avatar Tim Übelhör
Browse files

Channel is compatible with the IChannel from ModeliChart.

parent ceb6c6dc
No related branches found
No related tags found
No related merge requests found
...@@ -7,4 +7,17 @@ message ProtoChannel { ...@@ -7,4 +7,17 @@ message ProtoChannel {
string fmu_instance_name = 2; string fmu_instance_name = 2;
uint32 value_ref = 3; uint32 value_ref = 3;
bool enabled = 4; bool enabled = 4;
bool settable = 5;
string displayed_unit = 6;
string description = 7;
ChannelType channel_type = 8;
}
enum ChannelType
{
INTEGER = 0;
REAL = 1;
ENUM = 2;
BOOLEAN = 3;
NONE = 4;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment