78 return std::shared_ptr<PacmodTxMsg>(
new ShiftRptMsg);
81 return std::shared_ptr<PacmodTxMsg>(
new AccelRptMsg);
87 return std::shared_ptr<PacmodTxMsg>(
new BrakeRptMsg);
90 return std::shared_ptr<PacmodTxMsg>(
new SteerRptMsg);
117 return std::shared_ptr<PacmodTxMsg>(
new HornRptMsg);
153 return std::shared_ptr<PacmodTxMsg>(
new WiperRptMsg);
156 return std::shared_ptr<PacmodTxMsg>(
new VinRptMsg);
166 enabled = in[0] & 0x01;
167 override_active = ((in[0] & 0x02) >> 1) != 0;
168 user_can_timeout = ((in[0] & 0x20) >> 5) != 0;
169 brake_can_timeout = ((in[0] & 0x10) >> 4) != 0;
170 steering_can_timeout = ((in[0] & 0x08) >> 3) != 0;
171 vehicle_can_timeout = ((in[0] & 0x04) >> 2) != 0;
172 user_can_read_errors = ((in[6] << 8) | in[7]);
177 std::ostringstream oss;
178 oss << in[0] << in[1] << in[2];
179 mfg_code = oss.str();
181 if (mfg_code ==
"52C")
182 mfg =
"POLARIS INDUSTRIES INC.";
183 else if (mfg_code ==
"3HS")
184 mfg =
"NAVISTAR, INC.";
185 else if (mfg_code ==
"2T2")
186 mfg =
"TOYOTA MOTOR MANUFACTURING CANADA";
188 model_year_code = in[3];
190 if (model_year_code >=
'1' && model_year_code <=
'9')
192 model_year = 2000 + model_year_code;
194 else if (model_year_code >=
'A' && model_year_code <
'Z')
196 switch (model_year_code)
264 serial = (in[4] & 0x0F);
265 serial = (serial << 8) | in[5];
266 serial = (serial << 8) | in[6];
271 manual_input = in[0];
280 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
281 manual_input =
static_cast<double>(temp / 1000.0);
283 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
284 command =
static_cast<double>(temp / 1000.0);
286 temp = (
static_cast<int16_t
>(in[4]) << 8) | in[5];
287 output =
static_cast<double>(temp / 1000.0);
294 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
295 vehicle_speed =
static_cast<double>(temp / 100.0);
297 vehicle_speed_valid = (in[2] == 1);
298 vehicle_speed_raw[0] = in[3];
299 vehicle_speed_raw[1] = in[4];
306 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
307 yaw_rate =
static_cast<double>(temp / 100.0);
312 latitude_degrees =
static_cast<int8_t
>(in[0]);
313 latitude_minutes = in[1];
314 latitude_seconds = in[2];
315 longitude_degrees =
static_cast<int8_t
>(in[3]);
316 longitude_minutes = in[4];
317 longitude_seconds = in[5];
318 heading = ((
static_cast<int16_t
>(in[6]) << 8) | in[7]) / 100.0;
335 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
336 front_left_wheel_speed =
static_cast<double>(temp / 100.0);
338 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
339 front_right_wheel_speed =
static_cast<double>(temp / 100.0);
341 temp = (
static_cast<int16_t
>(in[4]) << 8) | in[5];
342 rear_left_wheel_speed =
static_cast<double>(temp / 100.0);
344 temp = (
static_cast<int16_t
>(in[6]) << 8) | in[7];
345 rear_right_wheel_speed =
static_cast<double>(temp / 100.0);
352 temp = (
static_cast<int32_t
>(in[0]) << 24) |
353 (
static_cast<int32_t
>(in[1]) << 16) |
354 (
static_cast<int32_t
>(in[2]) << 8) | in[3];
355 current =
static_cast<double>(temp / 1000.0);
357 temp = (
static_cast<int32_t
>(in[4]) << 24) |
358 (
static_cast<int32_t
>(in[5]) << 16) |
359 (
static_cast<int32_t
>(in[6]) << 8) | in[7];
360 position =
static_cast<double>(temp / 1000.0);
368 temp16 = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
369 encoder_temp =
static_cast<double>(temp16);
371 temp16 = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
372 motor_temp =
static_cast<double>(temp16);
374 temp32 = (
static_cast<int32_t
>(in[7]) << 24) |
375 (
static_cast<int32_t
>(in[6]) << 16) |
376 (
static_cast<int32_t
>(in[5]) << 8) | in[4];
377 velocity =
static_cast<double>(temp32 / 1000.0);
384 temp = (
static_cast<int32_t
>(in[0]) << 24) |
385 (
static_cast<int32_t
>(in[1]) << 16) |
386 (
static_cast<int32_t
>(in[2]) << 8) | in[3];
387 torque_output =
static_cast<double>(temp / 1000.0);
389 temp = (
static_cast<int32_t
>(in[4]) << 24) |
390 (
static_cast<int32_t
>(in[5]) << 16) |
391 (
static_cast<int32_t
>(in[6]) << 8) | in[7];
392 torque_input =
static_cast<double>(temp / 1000.0);
399 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
400 dt =
static_cast<double>(temp / 1000.0);
402 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
403 kp =
static_cast<double>(temp / 1000.0);
405 temp = (
static_cast<int16_t
>(in[4]) << 8) | in[5];
406 ki =
static_cast<double>(temp / 1000.0);
408 temp = (
static_cast<int16_t
>(in[6]) << 8) | in[7];
409 kd =
static_cast<double>(temp / 1000.0);
416 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
417 p_term =
static_cast<double>(temp / 1000.0);
419 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
420 i_term =
static_cast<double>(temp / 1000.0);
422 temp = (
static_cast<int16_t
>(in[4]) << 8) | in[5];
423 d_term =
static_cast<double>(temp / 1000.0);
425 temp = (
static_cast<int16_t
>(in[6]) << 8) | in[7];
426 all_terms =
static_cast<double>(temp / 1000.0);
433 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
434 new_torque =
static_cast<double>(temp / 1000.0);
436 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
437 str_angle_desired =
static_cast<double>(temp / 1000.0);
439 temp = (
static_cast<int16_t
>(in[4]) << 8) | in[5];
440 str_angle_actual =
static_cast<double>(temp / 1000.0);
442 temp = (
static_cast<int16_t
>(in[6]) << 8) | in[7];
443 error =
static_cast<double>(temp / 1000.0);
450 temp = (
static_cast<int16_t
>(in[0]) << 8) | in[1];
451 angular_velocity =
static_cast<double>(temp / 1000.0);
453 temp = (
static_cast<int16_t
>(in[2]) << 8) | in[3];
454 angular_acceleration =
static_cast<double>(temp / 1000.0);
459 parking_brake_engaged = (in[0] == 0x01);
478 data[0] = turn_signal_cmd;
484 data[0] = headlight_cmd;
508 uint16_t cmdInt =
static_cast<uint16_t
>(accel_cmd * 1000.0);
509 data[0] = (cmdInt & 0xFF00) >> 8;
510 data[1] = cmdInt & 0x00FF;
516 int32_t raw_pos =
static_cast<int32_t
>(1000.0 * steer_pos);
517 uint32_t raw_spd = (uint32_t)(1000.0 * steer_spd);
519 data[0] = (raw_pos & 0xFF000000) >> 24;
520 data[1] = (raw_pos & 0x00FF0000) >> 16;
521 data[2] = (raw_pos & 0x0000FF00) >> 8;
522 data[3] = raw_pos & 0x000000FF;
523 data[4] = (raw_spd & 0xFF000000) >> 24;
524 data[5] = (raw_spd & 0x00FF0000) >> 16;
525 data[6] = (raw_spd & 0x0000FF00) >> 8;
526 data[7] = raw_spd & 0x000000FF;
532 uint16_t raw_pct =
static_cast<uint16_t
>(1000.0 * brake_pct);
534 data[0] = (raw_pct & 0xFF00) >> 8;
535 data[1] = (raw_pct & 0x00FF);
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(uint8_t turn_signal_cmd)
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(double steer_pos, double steer_spd)
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(double accel_cmd)
static const int64_t CAN_ID
static const int64_t CAN_ID
static std::shared_ptr< PacmodTxMsg > make_message(const int64_t &can_id)
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(uint8_t horn_cmd)
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
ROSLIB_DECL std::string command(const std::string &cmd)
void encode(uint8_t shift_cmd)
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(double brake_cmd)
static const int64_t CAN_ID
void encode(bool enable, bool clear_override, bool ignore_overide)
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
void encode(uint8_t wiper_cmd)
static const int64_t CAN_ID
void encode(uint8_t headlight_cmd)
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID
static const int64_t CAN_ID