Fawkes API  Fawkes Development Version
act_thread.cpp
1 
2 /***************************************************************************
3  * act_thread.cpp - Dynamixel plugin act thread
4  *
5  * Created: Tue Mar 24 14:55:57 2015 (based on pantilt plugin)
6  * Copyright 2006-2015 Tim Niemueller [www.niemueller.de]
7  ****************************************************************************/
8 
9 /* This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Library General Public License for more details.
18  *
19  * Read the full text in the LICENSE.GPL file in the doc directory.
20  */
21 
22 #include "act_thread.h"
23 #include "driver_thread.h"
24 
25 using namespace fawkes;
26 
27 /** @class DynamixelActThread "act_thread.h"
28  * Robotis dynamixel servo act thread.
29  * This thread integrates into the Fawkes main loop at the ACT_EXEC hook and
30  * calls the driver thread to accept new actuation commands.
31  *
32  * @author Tim Niemueller
33  */
34 
35 /** Constructor. */
37  : Thread("DynamixelActThread", Thread::OPMODE_WAITFORWAKEUP),
38  BlockedTimingAspect(BlockedTimingAspect::WAKEUP_HOOK_ACT_EXEC)
39 {
40 }
41 
42 
43 void
45 {
46  for (auto &d : driver_threads_) {
47  d->exec_act();
48  }
49 }
50 
51 /** Add a driver thread to wake in ACT hook.
52  * @param drv_thread driver thread to add
53  */
54 void
56 {
57  driver_threads_.push_back(drv_thread);
58 }
virtual void loop()
Code to execute in the thread.
Definition: act_thread.cpp:44
Driver thread for Robotis dynamixel servos.
Definition: driver_thread.h:53
Fawkes library namespace.
void add_driver_thread(DynamixelDriverThread *drv_thread)
Add a driver thread to wake in ACT hook.
Definition: act_thread.cpp:55
Thread class encapsulation of pthreads.
Definition: thread.h:42
Thread aspect to use blocked timing.
DynamixelActThread()
Constructor.
Definition: act_thread.cpp:36