Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

フィードバックの宛先を結局戻す #692

Merged
merged 4 commits into from
Jan 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ポート固定に変更
HansRobo committed Jan 12, 2025
commit ac16d7b6b55ab5bc38f2f3ab1254c81bf3ca6abe
4 changes: 2 additions & 2 deletions crane_robot_receiver/src/robot_receiver_node.cpp
Original file line number Diff line number Diff line change
@@ -28,8 +28,8 @@ struct RobotInterfaceConfig
auto makeConfig(uint8_t id) -> RobotInterfaceConfig
{
RobotInterfaceConfig config;
config.ip = "224.5.20.100";
config.port = 50100 + id;
config.ip = std::format("224.5.20.{}", id + 100);
config.port = 50100;
return config;
}