Embedded Motion Control/Tutorials 2015: Difference between revisions
Jump to navigation
Jump to search
(Created page with '# Introduction # Installing Ubuntu # [[ Embedded Motion Control…') |
No edit summary |
||
Line 10: | Line 10: | ||
# [[ Embedded Motion Control/Tutorials/Installing the EMC environment | Installing the EMC environment ]] | # [[ Embedded Motion Control/Tutorials/Installing the EMC environment | Installing the EMC environment ]] | ||
# [[ Embedded Motion Control/Tutorials/Using Subversion to share and manage your project | Using Subversion to share and manage your project ]] | |||
<!-- | <!-- | ||
# [[ Embedded Motion Control/Tutorials/Building a ROS package | Building a ROS package ]] | # [[ Embedded Motion Control/Tutorials/Building a ROS package | Building a ROS package ]] | ||
# On the [http://wiki.ros.org/ROS/Tutorials ROS tutorials page], do tutorials 5 ([http://wiki.ros.org/ROS/Tutorials/UnderstandingNodes Understanding ROS Nodes]) to 17 ([http://wiki.ros.org/ROS/Tutorials/Recording%20and%20playing%20back%20data Recording and playing back data]), but '''keep this in mind''': | # On the [http://wiki.ros.org/ROS/Tutorials ROS tutorials page], do tutorials 5 ([http://wiki.ros.org/ROS/Tutorials/UnderstandingNodes Understanding ROS Nodes]) to 17 ([http://wiki.ros.org/ROS/Tutorials/Recording%20and%20playing%20back%20data Recording and playing back data]), but '''keep this in mind''': |
Revision as of 16:52, 28 April 2015
- Introduction
- Installing Ubuntu
- Customizing Ubuntu
- Do the following C++ tutorials:
- cplusplus.com: up to and including Name visibility
- MIT's Introduction to C++: up to and including Classes
- Remarks:
- For now, use a simple editor such as gedit (the ubuntu version of Notepad). 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