In Cytonconfig.xml file <ftdi_port>any</ftdi_port> is used to specify
the ftdi device port of cyton ."any" means ,it can take any port as per
the availabilty .If you work with two cyton simultaneously ,you can try
the following method
1)Make a copy of cytonCOnfig.xml say cytonConfig1.xml and cytonConfig2.xml .
2)Change <ftdi_port>any</ftdi_port> of cytonConfig1.xml as one port
number and cytonConfig2.xml as next port number .
3)Load 2 xml files and cyton plugin as follows
1)For cytonConfig1.xml
const EcString pluginName = prefixName + "Plugin.ecp";
const EcString pluginConfig = prefixName + "Config1.xml";
cyton::hardwareInterface hardware1(pluginName, pluginConfig);
2)
const EcString pluginName = prefixName + "Plugin.ecp";
const EcString pluginConfig = prefixName + "Config2.xml";
cyton::hardwareInterface hardware2(pluginName, pluginConfig);
3)Try to send values to each cyton .
Actually there is another model of cyton called Bi-arm cyton .It has 2
cyton veta in a single piece and controlling through single ftdi device .
This method is an alternative for making bi-arm cyton with 2 separate
cyton veta .
Hope you understand this logic ,Let me know if u have any problems
Regards
Lentin