-
Notifications
You must be signed in to change notification settings - Fork 41
Description
Hi there,
I'm testing a Nevion router (Sublime 32x32) and found that TVplay cannot control it. The Nevion router (modular) you tested has a controller (MULTICON), while this is not available on the SUBLIME router range.
The Protocol available on the SUBLIME range is only a subset of the MULTICON (Modular) protocol.
Yet, it is still the Nevion MRP protocol.
"inlist" and "si" commands are not available with the SUBLIME range, however, "sspi" and "sl" are implemented.
1- Would replacing the "si" commands by "sl" (that gives full level crosspoint status, instead of a range only) work? I noticed that there's an IF statement in NevionCummonicator.cs that should filter out the non-required outputports :line 253 lineParams[3] == _router.OutputPorts[0].ToString() .
"sl" command takes only 1 parameter : level, e.g. "sl l1"
2- Could "inlist" be replaced by "sspi"?, Although Inputs ports' names won't be available, sspi will still list down all the available input ports. This may require to replace (line 70) lineParams[3] with a string (such as "Out", or Output"), since sspi will return the status of the port as 4th parameter.
I have no competences in C#, I would appreciate your help on this