We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ffbfc7 commit 0e59610Copy full SHA for 0e59610
javasdk/NRSDK/src/com/neuronrobotics/sdk/dyio/DyIO.java
@@ -736,7 +736,8 @@ public void onAsyncResponse(BowlerDatagram data) {
736
if(numChan !=getChannels().size() ){
737
Log.error("Bad packet, wrong number of values");
738
}
739
- for(DyIOChannel c:getChannels()){
+ for(int i=0;i<getChannels().size();i++){
740
+ DyIOChannel c= getChannels().get(i);
741
ByteList val = new ByteList(bl.popList(4));
742
Log.info("DyIO event "+c+" value: "+val);
743
if(!c.isStreamChannel())
0 commit comments