Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext')
-rw-r--r--plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext b/plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext
index 84aca164d..f8dcbdd06 100644
--- a/plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext
+++ b/plugins/org.eclipse.etrice.core.config/src/org/eclipse/etrice/core/Config.xtext
@@ -35,7 +35,7 @@ DynamicConfig:
((('file path' filePath=STRING) |
(('user import' userCode1=STRING)
('user constructor' userCode2=STRING))) &
- ('polling timer [ms]' polling=INT)?)
+ ('polling interval' polling=TIME)?)
'}';
ActorClassConfig:
@@ -52,7 +52,7 @@ ActorInstanceConfig:
ProtocolClassConfig:
'ProtocolClassConfig' protocol=[room::ProtocolClass|FQN] '{'
(('regular' regular=PortClassConfig)? &
- ('conjugate' conjugated=PortClassConfig)?)
+ (('conjugate' | 'conjugated') conjugated=PortClassConfig)?)
'}';
PortClassConfig:

Back to the top