|
SMACC2
|
#include <cb_yaw_scan.hpp>


Public Member Functions | |
| CbYawScan (float amplitude=0.6f, float period=6.0f, float baseHeading=std::numeric_limits< float >::quiet_NaN()) | |
| void | onEntry () override |
| void | onExit () override |
| void | update () override |
Public Member Functions inherited from cl_px4_mr::CbPx4ClientBehaviorBase | |
| template<typename TOrthogonal , typename TSourceObject > | |
| void | onStateOrthogonalAllocation () |
| virtual | ~CbPx4ClientBehaviorBase () |
| void | setTimeout (std::chrono::milliseconds timeout) |
| bool | hasTimeout () const |
Public Member Functions inherited from smacc2::SmaccAsyncClientBehavior | |
| template<typename TOrthogonal , typename TSourceObject > | |
| void | onStateOrthogonalAllocation () |
| virtual | ~SmaccAsyncClientBehavior () |
| template<typename TCallback , typename T > | |
| smacc2::SmaccSignalConnection | onSuccess (TCallback callback, T *object) |
| template<typename TCallback , typename T > | |
| smacc2::SmaccSignalConnection | onFinished (TCallback callback, T *object) |
| template<typename TCallback , typename T > | |
| smacc2::SmaccSignalConnection | onFailure (TCallback callback, T *object) |
| void | requestForceFinish () |
| void | executeOnEntry () override |
| void | executeOnExit () override |
| void | waitOnEntryThread (bool requestFinish) |
| template<typename TCallbackMethod , typename T > | |
| smacc2::SmaccSignalConnection | onSuccess (TCallbackMethod callback, T *object) |
| template<typename TCallbackMethod , typename T > | |
| smacc2::SmaccSignalConnection | onFinished (TCallbackMethod callback, T *object) |
| template<typename TCallbackMethod , typename T > | |
| smacc2::SmaccSignalConnection | onFailure (TCallbackMethod callback, T *object) |
Public Member Functions inherited from smacc2::ISmaccClientBehavior | |
| ISmaccClientBehavior () | |
| virtual | ~ISmaccClientBehavior () |
| ISmaccStateMachine * | getStateMachine () |
| std::string | getName () const |
| template<typename SmaccClientType > | |
| void | requiresClient (SmaccClientType *&storage) |
| template<typename SmaccComponentType > | |
| void | requiresComponent (SmaccComponentType *&storage, ComponentRequirement requirementType=ComponentRequirement::SOFT) |
| template<typename SmaccComponentType > | |
| void | requiresComponent (std::string name, SmaccComponentType *&storage, ComponentRequirement requirementType=ComponentRequirement::SOFT) |
Public Member Functions inherited from smacc2::ISmaccUpdatable | |
| ISmaccUpdatable () | |
| ISmaccUpdatable (rclcpp::Duration duration) | |
| void | executeUpdate (rclcpp::Node::SharedPtr node) |
| void | setUpdatePeriod (rclcpp::Duration duration) |
Private Attributes | |
| float | amplitude_ |
| float | period_ |
| float | baseHeading_ |
| float | holdX_ = 0.0f |
| float | holdY_ = 0.0f |
| float | holdZ_ = 0.0f |
| float | elapsed_ = 0.0f |
| std::atomic< bool > | active_ {false} |
| std::chrono::steady_clock::time_point | lastUpdateTime_ |
Additional Inherited Members | |
Protected Member Functions inherited from cl_px4_mr::CbPx4ClientBehaviorBase | |
| virtual void | wireCompletionSignals () |
| void | postPx4Success () |
| void | postPx4Failure () |
Protected Member Functions inherited from smacc2::SmaccAsyncClientBehavior | |
| void | postSuccessEvent () |
| void | postFailureEvent () |
| virtual void | dispose () override |
| bool | isShutdownRequested () |
| onEntry is executed in a new thread. However the current state cannot be left until the onEntry thread finishes. This flag can be checked from the onEntry thread to force finishing the thread. | |
Protected Member Functions inherited from smacc2::ISmaccClientBehavior | |
| virtual void | runtimeConfigure () |
| template<typename EventType > | |
| void | postEvent (const EventType &ev) |
| template<typename EventType > | |
| void | postEvent () |
| ISmaccState * | getCurrentState () |
| virtual rclcpp::Node::SharedPtr | getNode () const |
| virtual rclcpp::Logger | getLogger () const |
Protected Member Functions inherited from smacc2::ISmaccUpdatable | |
Protected Attributes inherited from cl_px4_mr::CbPx4ClientBehaviorBase | |
| CpVehicleCommand * | vehicleCommand_ = nullptr |
| CpVehicleStatus * | vehicleStatus_ = nullptr |
| CpTrajectorySetpoint * | trajectorySetpoint_ = nullptr |
| CpGoalChecker * | goalChecker_ = nullptr |
| CpVehicleLocalPosition * | localPosition_ = nullptr |
| CpOffboardKeepAlive * | offboardKeepAlive_ = nullptr |
Definition at line 36 of file cb_yaw_scan.hpp.
| cl_px4_mr::CbYawScan::CbYawScan | ( | float | amplitude = 0.6f, |
| float | period = 6.0f, | ||
| float | baseHeading = std::numeric_limits<float>::quiet_NaN() ) |
Definition at line 25 of file cb_yaw_scan.cpp.
|
overridevirtual |
Reimplemented from smacc2::ISmaccClientBehavior.
Definition at line 30 of file cb_yaw_scan.cpp.
References active_, amplitude_, baseHeading_, elapsed_, cl_px4_mr::CpVehicleLocalPosition::getHeading(), smacc2::ISmaccClientBehavior::getLogger(), cl_px4_mr::CpVehicleLocalPosition::getX(), cl_px4_mr::CpVehicleLocalPosition::getY(), cl_px4_mr::CpVehicleLocalPosition::getZ(), holdX_, holdY_, holdZ_, cl_px4_mr::CpVehicleLocalPosition::isValid(), lastUpdateTime_, cl_px4_mr::CbPx4ClientBehaviorBase::localPosition_, period_, cl_px4_mr::CbPx4ClientBehaviorBase::postPx4Failure(), cl_px4_mr::CpTrajectorySetpoint::setPositionNED(), cl_px4_mr::CbPx4ClientBehaviorBase::trajectorySetpoint_, and cl_px4_mr::wrapPi().

|
overridevirtual |
Reimplemented from smacc2::ISmaccClientBehavior.
Definition at line 74 of file cb_yaw_scan.cpp.
References active_, baseHeading_, smacc2::ISmaccClientBehavior::getLogger(), holdX_, holdY_, holdZ_, cl_px4_mr::CpTrajectorySetpoint::setPositionNED(), and cl_px4_mr::CbPx4ClientBehaviorBase::trajectorySetpoint_.

|
overridevirtual |
Reimplemented from cl_px4_mr::CbPx4ClientBehaviorBase.
Definition at line 85 of file cb_yaw_scan.cpp.
References active_, amplitude_, baseHeading_, elapsed_, holdX_, holdY_, holdZ_, lastUpdateTime_, period_, cl_px4_mr::CpTrajectorySetpoint::setPositionNED(), cl_px4_mr::CbPx4ClientBehaviorBase::trajectorySetpoint_, cl_px4_mr::CbPx4ClientBehaviorBase::update(), and cl_px4_mr::wrapPi().

|
private |
Definition at line 56 of file cb_yaw_scan.hpp.
|
private |
Definition at line 48 of file cb_yaw_scan.hpp.
|
private |
Definition at line 50 of file cb_yaw_scan.hpp.
|
private |
Definition at line 55 of file cb_yaw_scan.hpp.
|
private |
Definition at line 52 of file cb_yaw_scan.hpp.
|
private |
Definition at line 53 of file cb_yaw_scan.hpp.
|
private |
Definition at line 54 of file cb_yaw_scan.hpp.
|
private |
Definition at line 57 of file cb_yaw_scan.hpp.
|
private |
Definition at line 49 of file cb_yaw_scan.hpp.