Back to Use on a cb20 Board.
You will use C++ to develop your EEROS applications. For this you need at least some knowledge of the basic language features. A good starting point might be https://www.cplusplus.com/doc/tutorial/. Minimal help can also be found under C++ for Beginners.
What do you want to do next?
$ mkdir hello $ cd hello
#include <iostream> #include <eeros/logger/Logger.hpp> #include <eeros/logger/StreamLogWriter.hpp> int main() { using namespace eeros::logger; Logger::setDefaultStreamLogger(std::cout); Logger log = Logger::getLogger(); log.info() << "Hello, EEROS"; return 0; }
cmake_minimum_required(VERSION 3.10) project(helloworld) set(CMAKE_CXX_STANDARD 14) find_package(EEROS REQUIRED) add_executable(helloworld main.cpp) target_link_libraries(helloworld PRIVATE EEROS::eeros)
$ mkdir build-armhf $ cd build-armhf
$ . ~/ost-devel/tdx-xmayland/5.1.0/environment-setup-armv7at2hf-neon-tdx-linux-gnueabi
This step has to be done only once. However, you have to repeat it as soon as you open another shell.
$ cmake .. $ make
$ make
In order to be able to write your own EEROS programs, you could use any text editor. However, we recommend to use an integrated development environment, see Use KDevelop with Existing Build Configuration.
Continue with Deploy to cb20 Board.
As an example we use the Control a Single Motor demo program.
$ git clone https://github.com/eeros-project/simple-motor-control.git $ cd simple-motor-control
$ mkdir build-armhf $ cd build-armhf $ git checkout v1.0.0
$ . ~/ost-devel/tdx-xmayland/5.1.0/environment-setup-armv7at2hf-neon-tdx-linux-gnueabi
This step has to be done only once. However, you have to repeat it as soon as you open another shell. - Build the project with
$ cmake -DUSE_FLINK=TRUE .. $ make
Continue with Deploy to cb20 Board.