-
Notifications
You must be signed in to change notification settings - Fork 316
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
ROS2 Trapezoidal planner + mobility testing #704
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
8f7ed31
initial work on trapezoidal, CMake and package.xml
joris997 81012f6
added trapezoidal launch.py file
joris997 42fba4e
added trapezoidal header file, using rclcpp::Time
joris997 e1db1ff
removed log files from most recent push
joris997 03dc426
changed ff_nodelet to ff_component
joris997 cfa00c7
removed more nodelet dependencies in package.xml and CMake
joris997 e262be6
removed comma in launch.py to avoid lint error?
joris997 af5cf7f
converted planner_trapezoid.cpp to ros2, only chaning import and rclc…
joris997 7035294
changed nodelet into component and rewrote core class methods, trapez…
joris997 f9959f2
trying to pass lint_check_cpp
joris997 1583e02
many minor errors, still some issues with importing config_client and…
joris997 8056eac
updates to actionlib, now need to pull upstream choreographer
joris997 42a8801
Merge branch 'ros2' into ros2-mobility
joris997 06479a9
upstream update
joris997 f557f40
push with updated CMakeLists (as general as possible) and added ament…
joris997 3087a00
Merge branch 'ros2' of https://github.com/nasa/astrobee into ros2-mob…
marinagmoreira 2f94f1b
trapezoidal planner compiling
marinagmoreira 73e521a
converting mobility - still issues
marinagmoreira bd45e12
mapper compiling
marinagmoreira 01c97c1
fixing runtime errors
marinagmoreira fafd956
choreographer comms with control + teleop tool; control crshing
marinagmoreira 4613305
fixing pinv
marinagmoreira e7e0241
debugging progress
marinagmoreira 8c48c1b
disabling intra process communication
marinagmoreira c411669
fixing sim update rate
marinagmoreira 428ce1f
adding use_sim_time
marinagmoreira d1a4a2b
adding _ to vars, and initializing them - was giving a ROS2 error whe…
marinagmoreira 0adadc5
changing time method
marinagmoreira 150d967
add check to ff_timer
marinagmoreira d9b34a1
uncommenting the ConfigClient code
marinagmoreira 1a6ac4b
fixing config client build
marinagmoreira dfbc76a
comments from review
marinagmoreira b6c361b
removing old launchfiles
marinagmoreira bf51ab4
fixes from reviews
marinagmoreira 1f05987
fixes from comments3
marinagmoreira 68e0767
delete diagnostics
marinagmoreira d58d21d
fixing cmake dependencies + converting plangen
marinagmoreira 6a20b7d
Merge branch 'ros2' of https://github.com/nasa/astrobee into ros2-mob…
marinagmoreira 23c0eb7
moving logger out of planner.h
marinagmoreira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -89,6 +89,7 @@ astrobee/zones/*.bin | |
/*-rootfs | ||
/*-kernel | ||
/*-logs | ||
/log | ||
/qped.sublime-workspace | ||
*.egg | ||
*.egg-info | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (c) 2017, United States Government, as represented by the | ||
# Administrator of the National Aeronautics and Space Administration. | ||
# | ||
# All rights reserved. | ||
# | ||
# The Astrobee platform is licensed under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with the | ||
# License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# The state of the arm behavior | ||
|
||
|
||
uint32 index # Index being processed | ||
|
||
ff_msgs/ControlState setpoint # Current setpoint | ||
|
||
float32 error_position # Position error | ||
float32 error_attitude # Attitude error | ||
float32 error_velocity # Velocity error | ||
float32 error_omega # Omega error |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C++ is the worst language