![]() |
Smart Minotaur
|
Runs the movement and navigation logic of the robot. Mehr ...
#include <NavigationThread.hpp>
Öffentliche Methoden | |
void | init (MinotaurCommunicator *p_communicator, RobotOdometry *p_odom) |
void | run () |
The content of this method is executed in the thread. | |
![]() | |
void | start () |
void | stop () |
void | join () |
Geschützte Methoden | |
void | onStop () |
This method is called when stop() is called. | |
void | onStart () |
This method is called before the thread is started (call of start()). |
Runs the movement and navigation logic of the robot.
|
protectedvirtual |
This method is called before the thread is started (call of start()).
Any adjustments of members should be done here.
Implementiert minotaur::Thread.
|
protectedvirtual |
This method is called when stop() is called.
The correct stopping of the thread should be done here (e.g. set a bool to false).
Implementiert minotaur::Thread.
|
virtual |
The content of this method is executed in the thread.
All work done by the thread should be implemented here.
Implementiert minotaur::Thread.