Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00056
00057
00058
00059
00060
00061 #include <unistd.h>
00062 #include <signal.h>
00063 #include <string>
00064
00065
00066
00067
00068 #include "ros/ros.h"
00069
00070
00071
00072
00073 #include "rnr/rnrconfig.h"
00074 #include "rnr/log.h"
00075 #include "rnr/opts.h"
00076
00077
00078
00079
00080 #include "hek_teleop.h"
00081
00082 using namespace ::std;
00083 using namespace hekateros;
00084 using namespace hekateros_control;
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094 #define APP_EC_OK 0 ///< success
00095 #define APP_EC_INIT 2 ///< initialization fatal error
00096 #define APP_EC_EXEC 4 ///< execution fatal error
00097
00098 #define NO_SIGNAL 0 ///< no signal receieved value
00099
00100
00101
00102
00103 const char *NodeName = "hek_teleop";
00104 static int RcvSignal = NO_SIGNAL;
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00122 static const PkgInfo_T PkgInfo =
00123 {
00124 NodeName,
00125 "1.1.0",
00126 "2014.03.18",
00127 "2014",
00128 NodeName,
00129 "Robin Knight, Daniel Packard",
00130 "RoadNarrows LLC",
00131 "(C) 2013-2014 RoadNarrows LLC"
00132 };
00133
00137 static OptsPgmInfo_T AppPgmInfo =
00138 {
00139
00140 "[ROSOPTIONS]",
00141
00142
00143 "The %P ROS node provides ROS interfaces to the embedded Hekateros "
00144 "robotic manipulator.",
00145
00146
00147 "",
00148
00149
00150 NULL
00151 };
00152
00156 static OptsInfo_T AppOptsInfo[] =
00157 {
00158
00159 {NULL, }
00160 };
00161
00169 static void sigHandler(int sig)
00170 {
00171 RcvSignal = sig;
00172
00173
00174
00175 }
00176
00185 int main(int argc, char *argv[])
00186 {
00187 string strNodeName;
00188 double hz = 30;
00189 int rc;
00190
00191
00192
00193
00194
00195
00196
00197
00198 ros::init(argc, argv, NodeName);
00199
00200
00201
00202
00203 OptsGet(NodeName, &PkgInfo, &AppPgmInfo, AppOptsInfo, true, &argc, argv);
00204
00205
00206
00207
00208
00209 ros::NodeHandle nh(NodeName);
00210
00211
00212 strNodeName = ros::this_node::getName();
00213
00214
00215
00216
00217 if( !ros::master::check() )
00218 {
00219
00220 return APP_EC_OK;
00221 }
00222
00223
00224
00225
00226
00227
00228
00229 signal(SIGINT, sigHandler);
00230
00231
00232 signal(SIGTERM, sigHandler);
00233
00234 ROS_INFO("%s: Node started.", strNodeName.c_str());
00235
00236
00237
00238
00239 HekTeleop teleop(nh, hz);
00240
00241
00242
00243
00244 teleop.advertiseServices();
00245
00246 ROS_INFO("%s: Server services registered.", strNodeName.c_str());
00247
00248
00249
00250
00251 teleop.clientServices();
00252
00253 ROS_INFO("%s: Client services initialized.", strNodeName.c_str());
00254
00255
00256
00257
00258 teleop.advertisePublishers();
00259
00260 ROS_INFO("%s: Publishers registered.", strNodeName.c_str());
00261
00262
00263
00264
00265 teleop.subscribeToTopics();
00266
00267 ROS_INFO("%s: Subscribed topics registered.", strNodeName.c_str());
00268
00269
00270 ros::Rate loop_rate(hz);
00271
00272 ROS_INFO("%s: Ready.", strNodeName.c_str());
00273
00274
00275
00276
00277 while( (RcvSignal == NO_SIGNAL) && ros::ok() )
00278 {
00279
00280 ros::spinOnce();
00281
00282
00283 teleop.commCheck();
00284
00285
00286 loop_rate.sleep();
00287 }
00288
00289 if( ros::ok() )
00290 {
00291 teleop.putRobotInSafeMode(true);
00292 usleep(1000000);
00293 }
00294
00295 return APP_EC_OK;
00296 }