Simplify platform file

This commit is contained in:
Loic Guegan 2023-03-30 16:45:03 +02:00
parent 678a001cdc
commit 059ccc84e1
2 changed files with 4 additions and 6 deletions

View file

@ -167,7 +167,7 @@ class YAMLPlatformFile:
if "arguments" in nodes: if "arguments" in nodes:
args=nodes["arguments"] args=nodes["arguments"]
for r in args: for r in args:
for node_id in UnitsParser.node_range(r,self.default["node_count"]): for node_id in UnitsParser.node_range(str(r),self.default["node_count"]):
self.default["arguments"][node_id]=args[r] self.default["arguments"][node_id]=args[r]
def parse_general(self): def parse_general(self):

View file

@ -29,11 +29,9 @@ nodes:
implementations: implementations:
- all sender.py - all sender.py
# Node implementation arguments # Node implementation arguments
# arguments is a dictionary where key are ranges of node and values are the arguments for # arguments keys are ranges of nodes, and values are passed to the specified nodes
# these specific node ranges arguments:
arguments: { all: 2
"all": 2
}
##### Interfaces Section ##### ##### Interfaces Section #####
interfaces: interfaces: