SMACC2
st_acquire_sensors.hpp
Go to the documentation of this file.
1// Copyright 2021 MyName/MyCompany Inc.
2// Copyright 2021 RobosoftAI Inc. (template)
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16/*****************************************************************************************************************
17 *
18 * Authors: Pablo Inigo Blasco, Brett Aldrich
19 *
20 ******************************************************************************************************************/
21
22#pragma once
23
24#include "rclcpp/rclcpp.hpp"
25#include "smacc2/smacc.hpp"
26
27// CLIENTS
28
29// ORTHOGONALS
31
32// CLIENT BEHAVIORS
35
36namespace sm_autoware_avp
37{
38// SMACC2 clases
43
44// STATE DECLARATION
45struct StAcquireSensors : smacc2::SmaccState<StAcquireSensors, SmAutowareAvp>
46{
47 using SmaccState::SmaccState;
48
49 // TRANSITION TABLE
50 typedef boost::mpl::list<
51
53
54 >
56
57 // STATE FUNCTIONS
58 static void staticConfigure()
59 {
60 configure_orthogonal<OrAutowareAuto, CbWaitNode>("/localization/p2d_ndt_localizer_node" /*"/lgsvl/bridge"*/); // EvTimer triggers each 3 client ticks
61 }
62
64
65 void onEntry() { RCLCPP_INFO(getLogger(), "On Entry!"); }
66
67 void onExit() { RCLCPP_INFO(getLogger(), "On Exit!"); }
68};
69} // namespace sm_autoware_avp
rclcpp::Logger getLogger()
Definition: smacc_state.hpp:36
boost::mpl::list< Transition< smacc2::EvCbSuccess< CbWaitNode, OrAutowareAuto >, StSetupInitialLocationEstimation, SUCCESS > > reactions