-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #780 from ROBOTIS-GIT/ros2-devel
Ros2 devel
- Loading branch information
Showing
36 changed files
with
185 additions
and
163 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
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 |
---|---|---|
@@ -1,50 +1,48 @@ | ||
ISSUE TEMPLATE ver. 0.4.0 | ||
ISSUE TEMPLATE ver. 0.4.1 | ||
|
||
**Please note that we do not provide support for programming source codes or modifying the hardware.** | ||
|
||
1. Which TurtleBot3 you have? | ||
|
||
- [ ] Burger | ||
- [ ] Waffle | ||
- [ ] Waffle Pi | ||
|
||
2. Which SBC(Single Board Computer) is installed on TurtleBot3? | ||
|
||
- [ ] Raspberry Pi 3 | ||
- [ ] Raspberry Pi 4 | ||
- [ ] Intel Joule 570x | ||
- [ ] etc (PLEASE, WRITE DOWN YOUR SBC HERE) | ||
- [ ] Raspberry Pi 4 (specify RAM size: 2/4/8GB) | ||
- [ ] Jetson Nano | ||
- [ ] other (PLEASE, WRITE DOWN YOUR SBC HERE) | ||
|
||
3. Which OS is installed on the TurtleBot3 SBC? | ||
|
||
- [ ] Raspbian recovery image for ROS 1 Kinetic (Provided by ROBOTIS) | ||
- [ ] Ubuntu preinstalled server 18.04.1 or later | ||
- [ ] Ubuntu preinstalled server 20.04.1 or later | ||
- [ ] etc (PLEASE, WRITE DOWN YOUR OS) | ||
- [ ] Raspberry Pi recovery image (Provided by ROBOTIS via eManual) | ||
- [ ] Ubuntu preinstalled server 18.04 | ||
- [ ] Ubuntu preinstalled server 20.04 | ||
- [ ] other (PLEASE, WRITE DOWN YOUR OS) | ||
|
||
4. Which ROS version is running on TurtleBot3? | ||
|
||
- [ ] ROS 1 Kinetic Kame | ||
- [ ] ROS 1 Melodic Morenia | ||
- [ ] ROS 1 Noetic Ninjemys | ||
- [ ] ROS 2 Dashing Diademata | ||
- [ ] ROS 2 Eloquent Elusor | ||
- [ ] ROS Kinetic Kame (EOL) | ||
- [ ] ROS Melodic Morenia | ||
- [ ] ROS Noetic Ninjemys | ||
- [ ] ROS 2 Dashing Diademata (EOL) | ||
- [ ] ROS 2 Eloquent Elusor (EOL) | ||
- [ ] ROS 2 Foxy Fitzroy | ||
- [ ] etc (PLEASE, WRITE DOWN YOUR ROS VERSION HERE) | ||
- [ ] ROS 2 Galactic Geochelone | ||
- [ ] ROS 2 Rolling Ridley | ||
|
||
5. Which OS is installed on Remote PC? | ||
|
||
- [ ] Ubuntu 16.04 LTS (Xenial Xerus) | ||
- [ ] Ubuntu 18.04 LTS (Bionic Beaver) | ||
- [ ] Ubuntu 20.04 LTS (Focal Fossa) | ||
- [ ] etc (PLEASE, WRITE DOWN YOUR OS) | ||
|
||
6. Steps to reproduce the issue | ||
- [ ] other (PLEASE, WRITE DOWN YOUR OS) | ||
|
||
- | ||
6. Please describe the issue. | ||
|
||
7. Paste error messages printed on the screen | ||
|
||
- | ||
7. Copy & paste error messages printed on the screen. Screenshots or video clips are welcome. | ||
|
||
9. Describe the issue in detail | ||
|
||
- HERE | ||
8. How to reproduce the issue? |
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
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
File renamed without changes.
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,14 @@ | ||
#!/bin/bash | ||
|
||
echo "" | ||
echo "This script copies a udev rule to /etc to facilitate bringing" | ||
echo "up the turtlebot3 usb connection." | ||
echo "" | ||
|
||
sudo cp `sudo cp `ros2 pkg prefix turtlebot3_bringup`/share/turtlebot3_bringup/script/99-turtlebot3-cdc.rules /etc/udev/rules.d/ | ||
echo "" | ||
echo "Reload rules" | ||
echo "" | ||
sudo udevadm control --reload-rules | ||
sudo udevadm trigger |
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
Oops, something went wrong.