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 de9c2be commit a93a410Copy full SHA for a93a410
ihmc-high-level-behaviors/src/main/java/us/ihmc/openpi/OpenpiClient.java
@@ -20,6 +20,7 @@
20
21
import java.net.URI;
22
import java.nio.ByteBuffer;
23
+import java.nio.ByteOrder;
24
import java.util.concurrent.CompletableFuture;
25
import java.util.concurrent.TimeUnit;
26
@@ -41,6 +42,11 @@ public class OpenpiClient
41
42
public OpenpiClient(String host)
43
{
44
this.host = host;
45
+
46
+ state.order(ByteOrder.nativeOrder());
47
+ for (RobotSide side : RobotSide.values)
48
+ images.get(side).order(ByteOrder.nativeOrder());
49
+ actions.order(ByteOrder.nativeOrder());
50
}
51
52
public CompletableFuture<byte[]> request()
0 commit comments