Embedded Motion Control/Tutorials: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
# [[ Embedded Motion Control/Tutorials/Installing Ubuntu | Installing Ubuntu ]] | # [[ Embedded Motion Control/Tutorials/Installing Ubuntu | Installing Ubuntu ]] | ||
# [[ Embedded Motion Control/Tutorials/Customizing Ubuntu | Customizing Ubuntu ]] | # [[ Embedded Motion Control/Tutorials/Customizing Ubuntu | Customizing Ubuntu ]] | ||
# Do the following | # Do the following C++ tutorials: | ||
## [http://www.cplusplus.com/doc/tutorial/ cplusplus.com]: up to and including '''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 to and including '''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''' |
Revision as of 10:57, 20 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