Skip to content

Commit

Permalink
Fix: movel get two same x field (#50)
Browse files Browse the repository at this point in the history
* Update linux_cpp_build.yml

* fix: field repeatation
  • Loading branch information
Cosmoflips authored Jun 8, 2023
1 parent 8dcc305 commit b57fbf2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/linux_cpp_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
linux_cpp_test:
needs: linux_cpp_build
runs-on: ubuntu-latest
container: registry.cn-shanghai.aliyuncs.com/lebai/l-master:latest
container: registry.cn-shanghai.aliyuncs.com/lebai/l-master:3.1.6
steps:
- name: start nginx
run: nginx
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/robot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ CartesianPose Robot::get_actual_tcp_pose()
cart_pose["z"] = pose.position().z();
if(pose.rotation().euler_zyx())
{
cart_pose["rz"] = pose.rotation().euler_zyx()->x();
cart_pose["rz"] = pose.rotation().euler_zyx()->z();
cart_pose["ry"] = pose.rotation().euler_zyx()->y();
cart_pose["rx"] = pose.rotation().euler_zyx()->x();
}
Expand Down

0 comments on commit b57fbf2

Please sign in to comment.