-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nguyen Pham
committed
Oct 29, 2024
1 parent
92abc06
commit 11eec22
Showing
27 changed files
with
989 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Created by Gwanwoo Kim on 2021-05-28. | ||
// Copyright 2021 Neuromeka Inc. All rights reserved. | ||
|
||
syntax = "proto3"; | ||
package IndyFramework.Protobuf.HRI; | ||
|
||
import "hri_msgs.proto"; | ||
|
||
service HRI { | ||
// ---------------------------------------------------------------- // | ||
// Conty | ||
// ---------------------------------------------------------------- // | ||
|
||
rpc GetRefFrameList(GetRefFrameListReq) returns (GetRefFrameListRes) {} | ||
rpc SetRefFrameList(SetRefFrameListReq) returns (SetRefFrameListRes) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Created by Gwanwoo Kim on 2021-05-28. | ||
// Copyright 2021 Neuromeka Inc. All rights reserved. | ||
|
||
syntax = "proto3"; | ||
package IndyFramework.Protobuf.HRI; | ||
|
||
import "shared_msgs.proto"; | ||
//import "common_msgs.proto"; | ||
//import "device_msgs.proto"; | ||
|
||
//////////////////////////GetRefFrameList///////////////////////// | ||
message GetRefFrameListReq {} | ||
|
||
message GetRefFrameListRes { | ||
repeated IndyFramework.Protobuf.Shared.NamedReferencePosition ref_frames = 1; | ||
string default_name = 2; | ||
string msg = 100; | ||
} | ||
|
||
//////////////////////////SetRefFrameList///////////////////////// | ||
message SetRefFrameListReq { | ||
repeated IndyFramework.Protobuf.Shared.NamedReferencePosition ref_frames = 1; | ||
string default_name = 2; | ||
} | ||
|
||
message SetRefFrameListRes { | ||
string msg = 100; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package IndyFramework.Protobuf.Shared; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
// shared messages | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
message NamedReferencePosition { | ||
string name = 1; | ||
repeated float tpos = 2; | ||
repeated float tpos0 = 3; | ||
repeated float tpos1 = 4; | ||
repeated float tpos2 = 5; | ||
repeated float jpos0 = 6; | ||
repeated float jpos1 = 7; | ||
repeated float jpos2 = 8; | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Oops, something went wrong.