Difference between revisions of "TB3 Project Customization"

From wikidb
Jump to: navigation, search
(Git Repository Create)
(Sisters)
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
The two Ubuntu systems
 
The two Ubuntu systems
  
* </b Sisters>: Host is the project created for the ROS host or remote as it is called in the TR3 documentation. It is an Ubuntu 16.04 system running on the Dell Inspiron 13 5000 Series.
+
* '''Sisters''': Host is the project created for the ROS host or remote as it is called in the TR3 documentation. It is an Ubuntu 16.04 system running on the Dell Inspiron 13 5000 Series.
* </b Box>: Client is the client system running on the TR3. It is also an Ubuntu 16.04 system run on the Intel Joule 570x.
+
* '''Box''': Client is the client system running on the TR3. It is also an Ubuntu 16.04 system run on the Intel Joule 570x.
 
+
  
 
= Project Create =
 
= Project Create =
Line 12: Line 11:
  
 
   cd catkin_ws/src/
 
   cd catkin_ws/src/
   catkin_create_pkg host
+
   catkin_create_pkg tb3sisters
  
 
Created subdirectories
 
Created subdirectories
Line 20: Line 19:
 
* scripts: Bash scripts used for easy capability bring up
 
* scripts: Bash scripts used for easy capability bring up
 
* maps: Generated maps
 
* maps: Generated maps
 +
 +
I used to call this package host
  
 
== Box ==
 
== Box ==
Line 26: Line 27:
 
   catkin_create_pkg client
 
   catkin_create_pkg client
  
== Open ==
+
== Opens ==
  
 
Should I run?
 
Should I run?
Line 34: Line 35:
 
= Git Repository Create =
 
= Git Repository Create =
  
* [Git Repository Setup]
+
* [[Git Repository Setup]]
* [Git Commands]
+
* [[Git Commands]]

Latest revision as of 13:30, 15 January 2019

Overview

The two Ubuntu systems

  • Sisters: Host is the project created for the ROS host or remote as it is called in the TR3 documentation. It is an Ubuntu 16.04 system running on the Dell Inspiron 13 5000 Series.
  • Box: Client is the client system running on the TR3. It is also an Ubuntu 16.04 system run on the Intel Joule 570x.

Project Create

Sisters

 cd catkin_ws/src/
 catkin_create_pkg tb3sisters

Created subdirectories

  • launch: Host launch scripts
  • config: Node configuration files, for example, for the Logitech joy stick
  • scripts: Bash scripts used for easy capability bring up
  • maps: Generated maps

I used to call this package host

Box

 cd catkin_ws/src/
 catkin_create_pkg client

Opens

Should I run?

 . catkin_ws_indigo/devel/setup.bash

Git Repository Create