| 250 | } |
| 251 | |
| 252 | void handleActionLCM(const lcm::ReceiveBuffer *rbuf, const std::string & chan, const pd_tau_targets_lcmt * msg){ |
| 253 | (void) rbuf; |
| 254 | (void) chan; |
| 255 | joint_command_simple = *msg; |
| 256 | |
| 257 | if (_firstCommandReceived == false){ |
| 258 | _firstCommandReceived = true; |
| 259 | std::cout << "First command received" << std::endl; |
| 260 | } |
| 261 | |
| 262 | } |
| 263 | |
| 264 | void handleArmLCM(const lcm::ReceiveBuffer *rbuf, const std::string & chan, const arm_action_lcmt * msg){ |
| 265 | (void) rbuf; |
nothing calls this directly
no outgoing calls
no test coverage detected