Embedded Motion Control/Tutorials: Difference between revisions

From Control Systems Technology Group
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
# [[ Embedded Motion Control/Tutorials/Customizing Ubuntu | Customizing Ubuntu ]] (todo)
# [[ Embedded Motion Control/Tutorials/Customizing Ubuntu | Customizing Ubuntu ]] (todo)
# Do the following (ROS-independent) C++ tutorials:
# Do the following (ROS-independent) C++ tutorials:
## [http://www.cplusplus.com/doc/tutorial/ cplusplus.com]: up until '''Name visibility'''
## [http://www.cplusplus.com/doc/tutorial/ cplusplus.com]: up to and including '''Name visibility'''
## [http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-introduction-to-c-january-iap-2011/lecture-notes/ MIT's Introduction to C++]: up until '''Classes'''
## [http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-introduction-to-c-january-iap-2011/lecture-notes/ MIT's Introduction to C++]: up to and including '''Classes'''
#* Remarks:
#* Remarks:
#** For now, use a simple editor such as ''gedit''. We will install a more advanced editor (IDE - Integrated Development Environment) later.
#** For now, use a simple editor such as ''gedit''. We will install a more advanced editor (IDE - Integrated Development Environment) later.

Revision as of 11:26, 24 April 2014

  1. System Overview (todo)
  2. Installing Ubuntu (todo)
  3. Customizing Ubuntu (todo)
  4. Do the following (ROS-independent) C++ tutorials:
    1. cplusplus.com: up to and including Name visibility
    2. MIT's Introduction to C++: up to and including Classes
    • Remarks:
      • For now, use a simple editor such as gedit. We will install a more advanced editor (IDE - Integrated Development Environment) later.
      • Once you have saved your C++ program (e.g. as example.cpp), it can be compiled from a terminal using:
        g++ example.cpp -o example
        and run with
        ./example
  5. Installing and configuring ROS
  6. Navigating the ROS filesystem
  7. Creating a ROS package
  8. Using Subversion to share and manage your project
  9. Building a ROS package
  10. On the ROS tutorials page, do tutorials 5 (Understanding ROS Nodes) to 17 (Recording and playing back data), but keep this in mind:
    • If you can choose between rosbuild and catkin, select rosbuild
    • If you can choose between C++ and Python, select C++
    • Whenever the tutorial refers to the beginners_tutorial ROS package, use the name of the package you created above instead (that is, beginners_tutorial_<YOUR_NAME>). Of course, you can use TAB completion when possible.
    • The path to your ROS package differs from the path in the ROS tutorials
  11. Setting up an IDE
  12. Setting up the PICO simulator
  13. Creating your first PICO-related ROS package