-
Notifications
You must be signed in to change notification settings - Fork 110
ROS Kinetic/Melodic clean-up #4
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
Open
JWhitleyWork
wants to merge
28
commits into
f1tenth:melodic
Choose a base branch
from
JWhitleyWork:cleanup
base: melodic
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
3fc50ca
Removing ackermann_msgs to use binary version.
5ae5549
Removing joystick_drivers to use binary version.
a37c32d
Removing serial to use binary version.
984b839
Removing hokuyo_node to be replaced with urg_node.
3991b7c
Replacing hokuyo_node with urg_node.
30f4923
Removing vesc to use binary version.
0ec07ca
Updating README.
b8a7224
Moving ackermann_cmd_mux to top of workspace.
f3b1458
Updating ackermann_cmd_mux CMakeLists.txt and package.xml files.
24bd914
Adding framework for f1tenth_racecar to replace racecar.
147a887
Moving racecar files up a level.
1326486
Updating README.
5c6e972
Adding LICENSE file.
0afb516
Adding used YAML config files to f1tenth_racecar.
48654c0
Adding all example maps to f1tenth_racecar.
a26cb89
Adding all rviz configs to f1tenth_racecar.
de11890
Installing all subfolders of f1tenth_racecar.
d3a2b4f
Adding joy_teleop script and dependencies.
d4439d7
Adding missing dependency on vesc_ packges to f1tenth_racecar.
060d73c
Adding missing dependencies on amcl and map_server.
d26195c
Adding used launch files to f1tenth_racecar.
3754f9f
Removing racecar package.
6980949
[f1tenth_racecar] Fixing errors in package.xml.
57032e3
[f1tenth_racecar] Adding missing dependencies in CMakeLists.txt.
fb6f872
[f1tenth_system] Fixing param bug in sensors.launch.xml.
4ea308f
Adding argument to teleop.launch for Jetson NX joystick inputs.
021b750
Addressing feedback from review.
fe2502d
Update f1tenth_racecar/CMakeLists.txt
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
File renamed without changes.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,28 +1,9 @@ | ||
| # driver_base | ||
| You'll also need the driver_base package, , you could get this package via: | ||
|
|
||
| ```sudo apt-get install ros-<distro>-driver-base``` | ||
|
|
||
| # f110_system | ||
| Code/Drivers onboard f110 race cars. | ||
|
|
||
| ## ackermann_msgs | ||
| The ROS message definitions for ackermann steering. | ||
|
|
||
| ## hokuyo_node | ||
| The driver for Hokuyo 10LX and Hokuyo 30LX. | ||
|
|
||
| ## joystick_drivers | ||
| The driver for Linux compatible joysticks | ||
|
|
||
| ## racecar | ||
| The package including launch files handling starting the car, and the parameters for Odometry tuning, motor/servo settings. | ||
|
|
||
| ## serial | ||
| A cross-platform library for interfacing with rs-232 serial like ports written in C++. | ||
| Code/Drivers onboard f1/10 racecars. | ||
|
|
||
| ## vesc | ||
| The package handling communication with the VESC 6 Plus. | ||
| ## f1tenth_racecar | ||
| The package including launch files handling starting the car, and the parameters for Odometry tuning, and motor/servo settings. | ||
| This package is based heavily on the [MIT Racecar](https://mit-racecar.github.io) project. | ||
|
|
||
| ## waypoint_logger | ||
| The node that records the car's current position in the world, requires particle_filter to work. | ||
| The node that records the car's current position in the world. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,43 @@ | ||
| cmake_minimum_required(VERSION 3.0.2) | ||
| project(f1tenth_racecar) | ||
|
|
||
| find_package(catkin REQUIRED | ||
| actionlib | ||
| rospy | ||
| rosservice | ||
| rostopic | ||
| sensor_msgs | ||
| ) | ||
|
|
||
| catkin_package( | ||
| CATKIN_DEPENDS | ||
| ackermann_cmd_mux | ||
| joy | ||
| rosbag | ||
| rostopic | ||
| rviz | ||
| tf2_ros | ||
| tf | ||
| urg_node | ||
| ) | ||
|
|
||
| install(PROGRAMS | ||
| scripts/joy_teleop.py | ||
| DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | ||
| ) | ||
|
|
||
| install(DIRECTORY config | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
| ) | ||
|
|
||
| install(DIRECTORY launch | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
| ) | ||
|
|
||
| install(DIRECTORY maps | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
| ) | ||
|
|
||
| install(DIRECTORY rviz | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
| ) |
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,51 @@ | ||
| joy_node: | ||
| dev: /dev/input/joypad-f710 | ||
| deadzone: 0.01 | ||
| autorepeat_rate: 20 | ||
| coalesce_interval: 0.01 | ||
|
|
||
| teleop: | ||
| # Default mode - Stop for safety | ||
| default: | ||
| type: topic | ||
| is_default: true | ||
| message_type: ackermann_msgs/AckermannDriveStamped | ||
| topic_name: low_level/ackermann_cmd_mux/input/teleop | ||
| message_value: | ||
| - | ||
| target: drive.speed | ||
| value: 0.0 | ||
| - | ||
| target: drive.steering_angle | ||
| value: 0.0 | ||
|
|
||
| # Enable Human control by holding Left Bumper | ||
| human_control: | ||
| type: topic | ||
| message_type: ackermann_msgs/AckermannDriveStamped | ||
| topic_name: low_level/ackermann_cmd_mux/input/teleop | ||
| deadman_buttons: [4] | ||
| axis_mappings: | ||
| - | ||
| axis: 1 | ||
| target: drive.speed | ||
| scale: 5.0 # joystick will command plus or minus 2 meters / second | ||
| offset: 0.0 | ||
| - | ||
| axis: 0 | ||
| target: drive.steering_angle | ||
| scale: 0.34 # joystick will command plus or minus ~20 degrees steering angle | ||
| offset: 0.0 | ||
|
|
||
| # Enable autonomous control by pressing right bumper | ||
| # This switch causes the joy_teleop to stop sending messages to input/teleop | ||
| # And send messages to /dev/null (an unused ROS topic) | ||
| autonomous_control: | ||
| type: topic | ||
| message_type: std_msgs/Int8 | ||
| topic_name: /dev/null | ||
| deadman_buttons: [5] | ||
| message_value: | ||
| - | ||
| target: data | ||
| value: 0 | ||
File renamed without changes.
File renamed without changes.
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.
Uh oh!
There was an error while loading. Please reload this page.