Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #ifndef LOWLEVELCONFIGURE_HPP_
00044 #define LOWLEVELCONFIGURE_HPP_
00045
00046 #include <ros/ros.h>
00047 #include <auv_msgs/Bool6Axis.h>
00048 #include <navcon_msgs/ConfigureVelocityController.h>
00049 #include <labust_mission/utils.hpp>
00050
00051
00052 namespace labust {
00053
00054
00055
00056
00057
00058 class LowLevelConfigure {
00059
00060 public:
00061
00062 LowLevelConfigure();
00063
00064
00065
00066
00067
00068 void LL_VELconfigure(bool enable, int x, int y, int z, int pitch, int roll, int yaw);
00069
00070 void AXESconfigure(auv_msgs::Bool6Axis& nu_bool);
00071
00072
00073
00074
00075
00076 auv_msgs::Bool6Axis nuAxis;
00077 navcon_msgs::ConfigureVelocityController velConConf;
00078
00079 ros::ServiceClient clientConfigureAxes;
00080 ros::ServiceClient clientConfigureVelocitiyController;
00081 };
00082
00083 LowLevelConfigure::LowLevelConfigure(){
00084
00085 ros::NodeHandle nh;
00086
00087 nuAxis.x = false;
00088 nuAxis.y = false;
00089 nuAxis.z = false;
00090 nuAxis.pitch = false;
00091 nuAxis.roll = false;
00092 nuAxis.yaw = false;
00093
00094 for( int i = 0; i<=5; i++){
00095 velConConf.request.desired_mode[i] = 0;
00096 }
00097
00098 clientConfigureAxes = nh.serviceClient<navcon_msgs::ConfigureAxes>("ConfigureAxes");
00099 clientConfigureVelocitiyController = nh.serviceClient<navcon_msgs::ConfigureVelocityController>("ConfigureVelocityController");
00100 }
00101
00102
00103
00104
00105
00106 void LowLevelConfigure::LL_VELconfigure(bool enable, int x, int y, int z, int roll, int pitch, int yaw){
00107
00108 if(enable){
00109
00110 nuAxis.x = false;
00111 nuAxis.y = false;
00112 nuAxis.z = false;
00113 nuAxis.pitch = false;
00114 nuAxis.roll = false;
00115 nuAxis.yaw = false;
00116
00117 if(velConConf.request.desired_mode[0] = x){ nuAxis.x = true;}
00118 if(velConConf.request.desired_mode[1] = y){nuAxis.y = true;}
00119 if(velConConf.request.desired_mode[2] = z){nuAxis.z = true;}
00120 if(velConConf.request.desired_mode[3] = roll){nuAxis.roll = true;}
00121 if(velConConf.request.desired_mode[4] = pitch){ nuAxis.pitch = true;}
00122 if(velConConf.request.desired_mode[5] = yaw){nuAxis.yaw = true;}
00123
00124
00125 utilities::callService<navcon_msgs::ConfigureVelocityController>(clientConfigureVelocitiyController,velConConf);
00126 } else {
00127
00128
00129 for( int i = 0; i<=5; i++){
00130 velConConf.request.desired_mode[i] = 0;
00131 }
00132
00133 nuAxis.x = false;
00134 nuAxis.y = false;
00135 nuAxis.z = false;
00136 nuAxis.pitch = false;
00137 nuAxis.roll = false;
00138 nuAxis.yaw = false;
00139
00140
00141 utilities::callService<navcon_msgs::ConfigureVelocityController>(clientConfigureVelocitiyController,velConConf);
00142 }
00143 }
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156 }
00157
00158 #endif