Changes

Summary

  1. Update vehicleInfo.groovy (details)
Commit d1202eb18b01518dd50402b6817349f17dfffbce by weilikang
Update vehicleInfo.groovy
The file was modifiedsrc/org/devops/vehicleInfo.groovy

Summary

  1. Add new file (details)
Commit bcf215925dafdd5a626fc1c753c1ab08196a4509 by weilikang
Add new file
The file was addedparams/wuhan-zhongtielianji-submodule.jenkinsfile

Summary

  1. feat: BP3/BP4雷达探测首包自动判型,忽略yaml配置 (details)
  2. fix: 离线包源(ROS/proto)也做BP3/BP4自动判型,修复时间戳溢出崩溃 (details)
  3. feat_out:使用bucket降低运动补偿延迟 (details)
Commit e3bb5779a8c24e895decea1ce064102adf84e03e by lanxiaosong
feat: BP3/BP4雷达探测首包自动判型,忽略yaml配置

RSBP(BP3)与RSBPV4(BP4)的MSOP包长、魔数、block布局完全相同,无法按尺寸区分。
唯一差异在MSOP header偏移30的lidar_type字节: 0x03=BP3, 0x00=BP4
(洋浦76从机实测稳定)。

- decoder_factory.hpp: 新增 detectBpLidarType(), 在线绑msop_port探测首包(3s超时)
  或离线扫pcap, 读偏移30字节判型, 失败回退yaml
- lidar_driver_impl.hpp: init()在input绑口前调用探测并覆盖lidar_type,
  保证探测socket不与驱动socket抢端口, 且判出的类型同步到Input与decoder

yaml保持RSBP/RSBPV4原格式, 能自动判出即忽略yaml定义。

via [HAPI](https://hapi.run)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: HAPI <noreply@hapi.run>
The file was modifiedsrc/rs_driver/src/rs_driver/driver/lidar_driver_impl.hpp
The file was modifiedsrc/rs_driver/src/rs_driver/driver/decoder/decoder_factory.hpp
Commit 4792b51816d55e13660f638c6d16cb61c4c1e0bd by lanxiaosong
fix: 离线包源(ROS/proto)也做BP3/BP4自动判型,修复时间戳溢出崩溃

msg_source=2/4 走 initDecoderOnly,不开socket,原先的绑口前探测不生效,
yaml 写错型时 BP3 的 YMD 时间戳会被 BP4 解码器按 Unix 解成 ~2.8e13 秒,
ros::Time::fromSec 抛 "Time is out of dual 32-bit range" 导致节点 abort
(离线回放 truck_3rsbp_offline_bp4 时 right_down 节点必现)。

- decoder_factory: 抽出 DecoderFactory::probeBpTypeInBuf(),复用偏移30
  判据(0x03=BP3 / 0x00=BP4),供 socket/pcap 探测与裸包判型共用
- lidar_driver_impl: decodeMsopScan 解码前判首个 MSOP 包,与 yaml 不一致
  则重建 decoder 并清 difop_flag_ 等下一个 DIFOP;加 decoder_mutex_ 保护
  与 decodeDifopPkt 并发的指针替换

via [HAPI](https://hapi.run)

Co-Authored-By: HAPI <noreply@hapi.run>
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
The file was modifiedsrc/rs_driver/src/rs_driver/driver/lidar_driver_impl.hpp
The file was modifiedsrc/rs_driver/src/rs_driver/driver/decoder/decoder_factory.hpp
Commit 9bbb57522c25efabc3da13add9cd9f9128b622d6 by zhaojianfeng2
feat_out:使用bucket降低运动补偿延迟
The file was modifiedsrc/common/lidar_motion_compensate.cpp
The file was modifiedsrc/adapter/point_cloud_ros_adapter.hpp
The file was modifiedsrc/common/lidar_motion_compensate.h
The file was modifiedconfig/config.yaml

Summary

  1. feat: park adjust停车允许5cm越冲 (details)
  2. feat: 支持双向步进振箱 (details)
  3. feat: 防滑错误码上传 (details)
  4. fix: 防滑报警默认关闭 (details)
  5. feat: 转弯积分补偿 (details)
  6. fix: 起步防滑不报错问题修复 (details)
  7. feat: 急停的正确清空 (details)
  8. feat: 只保留ee的机械急停 (details)
  9. feat: 振箱策略更改 (details)
  10. fix: add trailer_angle_compensation (details)
  11. feat: 步进模式下传给mpc的参考速度序列修正 (details)
  12. fix: trailer angle compensation (details)
  13. feat: 起步积分与弯道积分合并  增加横向日志观测值便于AI分析横向动力特性 (details)
  14. feat: 将减速度标定质量独立 (details)
  15. feat: SC车型新增横向平移和自转功能 (details)
  16. fix: 起步阶段不再强制变更使用质量 (details)
  17. feat: 底盘为空时认为静止 (details)
  18. fix: SC模式切换保护 (details)
  19. feat: SC横移模式指令值更改 (details)
  20. feat: 起步防滑优化  对准起步辅助优化  横向零偏故障码常态化开启 (details)
  21. feat: 转向补偿超限报警 单边停车质量补偿 (details)
  22. feat:提前停车功能考虑多段路径 扩充到openspace场景   扩充到SC车型 (details)
  23. feat: SC车型运动方向固定 增加每个轮子角度的观测 (details)
  24. fix: 提前停车功能反向前进处理 (details)
  25. fix: emergency_brake的正确记录 (details)
  26. feat: 优化转向灯逻辑 (details)
  27. feat: SC车步进方向调整   纵向MPC制动保护增加积分项   横向运动日志记录增强 (details)
  28. feat: SC步进横移bug (details)
  29. feat: estop函数积分保护失效的bug (details)
  30. feat: 急停使用的FollowCtrlDcc函数积分优化 (details)
  31. feat: truck 横向变步长mpc (details)
  32. feat: IMV零偏补偿航向学习错误 (details)
  33. feat: IMV零偏补偿航向学习错误 (details)
  34. fix: reject inconsistent rotation direction (details)
  35. fix(control): guard MPC during rotation command dropout (details)
  36. feat: 转向积分补偿释放参数配置化 (details)
  37. feat: 变时域横向控制器优化调整 (details)
  38. feat:纵向控制器记录消耗时间 (details)
  39. feat:IMV 横向控制增加考虑延迟的控制器 (details)
  40. feat: 纵向控制使用的加速度源从定位直接使用切换为根据速度微分 (details)
  41. feat: 加速度计算不考虑定位标志位 (details)
Commit 010c56f70b6099af54cb24e4a34759409e61df22 by liuhongshuo
feat: park adjust停车允许5cm越冲
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_controller.cpp
Commit a07109ba77c415dad324a12de9671993915fbcfa by liuhongshuo
feat: 支持双向步进振箱
The file was modifiedalgorithm/ctrl/lon_controller/truck_move_step_controller.cpp
The file was modifieddata/config/cfg_creep.hpp
The file was modifieddata/config/cfg_creep.cpp
Commit c220dba36dfecb775104176ee16bdc362cb4d4b6 by liuhongshuo
feat: 防滑错误码上传
The file was modifieddata/config/cfg_proc_longctrl.hpp
The file was modifiedAGENTS.md
The file was modifieddata/config/cfg_proc_longctrl.cpp
The file was modifieddata/ctrl/longctrl_data.hpp
The file was modifieddata/config/cfg_error.cpp
The file was modifiedcommon/util/error_code_data.cpp
The file was modifieddata/config/cfg_error.hpp
The file was modifiedcommon/util/error_code_data.hpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/follow_pedal_post_processor.cpp
The file was modifiednode/sink/module.cpp
The file was modifiednode/sink/ros_sink_error_info_ctrl.cpp
The file was modifiednode/sink/ros_sink_record_trigger.cpp
The file was modifieddata/ctrl/longctrl_data.cpp
Commit fdc7242fad0f04ee6469f2ac320999bda74e40eb by liuhongshuo
fix: 防滑报警默认关闭
The file was modifieddata/config/cfg_proc_longctrl.cpp
Commit 9e3e6b1b2af956dd33bd844206a2d19bce82971b by liuhongshuo
feat: 转弯积分补偿
The file was modifieddata/ctrl/velocity_cmd.hpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was modifieddata/ctrl/velocity_cmd.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.hpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.hpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifieddata/ctrl_frame.cpp
Commit 097da880b8f2328165b2fd6da04fd3211057bf31 by liuhongshuo
fix: 起步防滑不报错问题修复
The file was modifiedalgorithm/ctrl/lat_controller/imv_new_augment_mpc.cpp
The file was modifieddata/config/cfg_proc_longctrl.cpp
The file was modifiedalgorithm/ctrl/parallel_controller/parallel_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/follow_pedal_post_processor.cpp
The file was modifieddata/config/cfg_proc_longctrl.hpp
The file was modifieddata/ctrl/longctrl_data.cpp
The file was modifieddata/ctrl/longctrl_data.hpp
Commit f4ae7fb97a4fb8dde5af92f927ab28a2b661278b by liuhongshuo
feat: 急停的正确清空
The file was modifiedalgorithm/ctrl/parallel_controller/parallel_controller.cpp
The file was modifiednode/source/ros_source_remote_cmd.cpp
The file was modifiednode/sink/ros_sink_command.cpp
The file was modifieddata/vehicle/vehicle_command.hpp
The file was modifiednode/process/proc/proc_move_step_controller.cpp
The file was modifiednode/source/ros_source_parallel_cmd.cpp
The file was modifieddata/vehicle/vehicle_command.cpp
The file was modifieddata/ctrl_frame.cpp
Commit 7de79cd8aa28d2bee27f620b762f657dd4973ede by liuhongshuo
feat: 只保留ee的机械急停
The file was modifiedalgorithm/ctrl/lon_controller/imv_lon_controller.cpp
Commit f794cd9d1706cdb27c2446a304d48032c1d8bc32 by liuhongshuo
feat: 振箱策略更改
The file was modifiedtest/controller_minimal_red_test.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_move_step_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_move_step_controller.hpp
The file was modifieddata/config/cfg_creep.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_creep_common.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_creep_common.hpp
The file was modifieddata/config/cfg_creep.hpp
Commit 910a649914dc3515f51b8a11050ac9c0ecc53953 by chenran
fix: add trailer_angle_compensation
The file was modifieddata/config/cfg_static.cpp
The file was modifieddata/config/cfg_static.hpp
The file was modifieddata/vehicle/trailer_posture.cpp
Commit 14371a5b3b57af39f79810d2b036549968786ea7 by liuhongshuo
feat: 步进模式下传给mpc的参考速度序列修正
The file was modifiednode/process/proc/proc_move_step_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_creep_common.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_creep_common.hpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_creep_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_move_step_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_move_step_controller.hpp
Commit b0f8d76bff9bbb19bbeb318422d46e9553383add by chenran
fix: trailer angle compensation
The file was modifieddata/vehicle/trailer_posture.cpp
The file was modifiednode/process/prepare/prepare_traj.cpp
The file was modifiedalgorithm/ctrl/lat_controller/reversing_truck_mpc.cpp
Commit 95b44b0683cde2c206bcb623b935c1b543df6eb2 by liuhongshuo
feat: 起步积分与弯道积分合并  增加横向日志观测值便于AI分析横向动力特性
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.hpp
The file was modifieddata/ctrl_frame.cpp
The file was modifiedalgorithm/ctrl/lat_controller/reversing_truck_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.hpp
The file was modifieddata/ctrl/lateral_ctrl_debug_data.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_solver.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_solver.hpp
The file was modifiedalgorithm/ctrl/lat_controller/truck_augment_mpc.cpp
The file was addeddata/ctrl/lat_mpc_debug_snapshot.hpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.hpp
The file was modifiedalgorithm/ctrl/lat_controller/tractor_dynamic_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/imv_new_augment_mpc.cpp
The file was modifieddata/ctrl/lateral_ctrl_debug_data.hpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_data.hpp
Commit 5c056ad3aea23ce67a66cdbbb4d49d33049a6f25 by liuhongshuo
feat: 将减速度标定质量独立
The file was modifieddata/config/cfg_static.cpp
The file was modifiedtest/accel_to_pedal_converter_test.cpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/physics_based_pedal_model.cpp
The file was modifieddata/config/cfg_static.hpp
Commit 6534e8a1ade78a27cf7afb8b4fbd4eb26b84436c by liuhongshuo
feat: SC车型新增横向平移和自转功能
The file was modifieddata/config/cfg_creep.hpp
The file was modifiedalgorithm/ctrl/lon_controller/longitude_controller.cpp
The file was addedalgorithm/ctrl/lon_controller/sc_rotation_controller.cpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was addedalgorithm/ctrl/lon_controller/sc_rotation_controller.hpp
The file was modifiedalgorithm/ctrl/lon_controller/sc_move_step_controller.cpp
The file was modifiednode/process/proc/proc_move_step_controller.cpp
The file was modifiednode/process/prepare/prepare_creep.cpp
The file was modifiedtest/controller_minimal_red_test.cpp
The file was modifiednode/process/prepare/prepare_creep.hpp
The file was modifiednode/process/proc/proc_move_step_controller.hpp
The file was modifieddata/config/cfg_creep.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_solver.cpp
The file was modifieddata/plan/plan_data.hpp
The file was modifiednode/sink/ros_sink_command.hpp
The file was modifiednode/sink/ros_sink_command.cpp
The file was modifieddata/ctrl_frame.cpp
The file was modifieddata/plan/plan_data.cpp
Commit 9df154e555b5f6b7456e440e199744897a7696c5 by liuhongshuo
fix: 起步阶段不再强制变更使用质量
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/physics_based_pedal_model.cpp
Commit 6801a2c3848d1ec3572cf601552ed6b7244a160a by liuhongshuo
feat: 底盘为空时认为静止
The file was modifiednode/sink/ros_sink_command.cpp
Commit 124326ae01e4d4b7d2d767f65df25cd2e5235cae by liuhongshuo
fix: SC模式切换保护
The file was modifiednode/sink/ros_sink_command.cpp
Commit d3bcb02fbcb3e925f40f2b0999b2dbd3cd90f4d1 by liuhongshuo
feat: SC横移模式指令值更改
The file was modifiednode/process/proc/proc_move_step_controller.cpp
Commit 99aa91653de1a39900d7dbd1575428d8f1c6ac15 by liuhongshuo
feat: 起步防滑优化  对准起步辅助优化  横向零偏故障码常态化开启
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.hpp
The file was modifieddata/ctrl/longctrl_data.hpp
The file was modifieddata/config/cfg_proc_longctrl.hpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.hpp
The file was modifieddata/config/cfg_proc_longctrl.cpp
The file was modifieddata/config/cfg_error.cpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was modifiedcommon/util/error_code_data.hpp
The file was modifieddata/config/cfg_error.hpp
The file was modifiedcommon/util/error_code_data.cpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/follow_pedal_post_processor.cpp
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.cpp
The file was modifieddata/ctrl/longctrl_data.cpp
Commit bcdaee342f0b1da318246caad3a3071ee85582d5 by liuhongshuo
feat: 转向补偿超限报警 单边停车质量补偿
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.hpp
The file was modifieddata/config/cfg_steering_offset_observer.cpp
The file was modifieddata/config/cfg_static.cpp
The file was modifieddata/config/cfg_static.hpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
The file was modifieddata/config/cfg_steering_offset_observer.hpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/physics_based_pedal_model.cpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.cpp
Commit 3f82d685beabf540889d45c6432c56a7a34ac474 by liuhongshuo
feat:提前停车功能考虑多段路径 扩充到openspace场景   扩充到SC车型
The file was modifieddata/config/cfg_proc_longctrl.hpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/imv_lon_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/imv_lon_controller.hpp
The file was modifieddata/config/cfg_proc_longctrl.cpp
Commit e4873c663b5762670fea9c8d87cc795fa7fd93e7 by liuhongshuo
feat: SC车型运动方向固定 增加每个轮子角度的观测
The file was modifieddata/config/cfg_creep.hpp
The file was modifiedalgorithm/ctrl/lon_controller/sc_move_step_controller.cpp
The file was modifieddata/ctrl_frame.cpp
The file was modifiednode/process/prepare/prepare_creep.cpp
The file was modifieddata/config/cfg_creep.cpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifiedtest/controller_minimal_red_test.cpp
Commit d8fdaa567faea3dfe934bea7a08d5a46d33a12b3 by liuhongshuo
fix: 提前停车功能反向前进处理
The file was modifieddata/ctrl/longctrl_data.hpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_controller.cpp
The file was modifieddata/ctrl_frame.cpp
The file was modifieddata/ctrl/longctrl_data.cpp
The file was modifiedalgorithm/ctrl/lon_controller/imv_lon_controller.cpp
The file was modifieddata/ctrl/observer_debug_data.cpp
Commit 5181def0cc248e6394d1271fcded403de4dbb96d by liuhongshuo
fix: emergency_brake的正确记录
The file was modifieddata/ctrl_frame.cpp
Commit 5859981114a107f794b7e84e7b53a5b824f5c2ff by liuhongshuo
feat: 优化转向灯逻辑
The file was modifiednode/process/proc/proc_assist.cpp
Commit 619b0f25fbc0f815443400660b3313cdd14d368c by liuhongshuo
feat: SC车步进方向调整   纵向MPC制动保护增加积分项   横向运动日志记录增强
The file was modifieddata/config/cfg_lon_dynamic_mpc.cpp
The file was modifieddata/vehicle/vehicle_state.hpp
The file was removedtest/controller_minimal_red_test.cpp
The file was modifieddata/ctrl/longitude_ctrl_debug_data.hpp
The file was modifieddata/vehicle/vehicle_state.cpp
The file was modifieddata/ctrl_frame.cpp
The file was modifiedalgorithm/ctrl/lon_controller/sc_move_step_controller.cpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.hpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifiedalgorithm/ctrl/lon_controller/capability/accel_to_pedal/follow_pedal_post_processor.cpp
The file was modifiedtest/CMakeLists.txt
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.hpp
Commit 24f3f0756fa9f0c093f04752ff2b0456a4c95bcb by liuhongshuo
feat: SC步进横移bug
The file was modifiednode/process/prepare/prepare_creep.cpp
Commit c5d564ce2688fadaff079def5859974d0d954c3b by liuhongshuo
feat: estop函数积分保护失效的bug
The file was modifiedalgorithm/ctrl/lon_controller/longitude_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_controller.cpp
Commit 1927a9895e4c32ed5edea82fc5636c8730b16f51 by liuhongshuo
feat: 急停使用的FollowCtrlDcc函数积分优化
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_controller.cpp
The file was modifiedalgorithm/ctrl/lon_controller/longitude_controller.hpp
The file was modifiedalgorithm/ctrl/lon_controller/longitude_controller.cpp
Commit 4c5520c159f2ea3df98b7242f288174f68598718 by liuhongshuo
feat: truck 横向变步长mpc
The file was addedalgorithm/ctrl/lat_controller/qp_solver/mpc_persistent_solver.cpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.hpp
The file was removedalgorithm/ctrl/lat_controller/qp_solver/lon_mpc_persistent_solver.hpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_solver.cpp
The file was modifieddata/config/cfg_mpc_qp.hpp
The file was removedalgorithm/ctrl/lat_controller/qp_solver/lon_mpc_persistent_solver.cpp
The file was modifieddata/config/cfg_mpc_qp.cpp
The file was modifieddata/ctrl/lat_mpc_debug_snapshot.hpp
The file was addedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.hpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_data.hpp
The file was addedalgorithm/ctrl/lat_controller/qp_solver/mpc_persistent_solver.hpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was addedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.cpp
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.hpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_data.cpp
Commit b7cd2cf88402037855d918a02115962b9ee43992 by liuhongshuo
feat: IMV零偏补偿航向学习错误
The file was modifiednode/process/prepare/prepare_state.cpp
The file was modifieddata/vehicle/vehicle_state.cpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was modifieddata/vehicle/vehicle_state.hpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.cpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.hpp
Commit 58ba4a4224fe5043c2dca006e034a204a61de545 by liuhongshuo
feat: IMV零偏补偿航向学习错误
The file was modifiednode/process/prepare/prepare_state.cpp
The file was modifieddata/vehicle/vehicle_state.hpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.hpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was modifieddata/vehicle/vehicle_state.cpp
The file was modifiedalgorithm/ctrl/observer/steering_offset_observer.cpp
Commit 2737676a5ed99a956b9c351ccb97d3d9dea13a85 by chenran
fix: reject inconsistent rotation direction
The file was addedalgorithm/ctrl/lat_controller/rotation_control_logic.hpp
The file was addedtest/rotation_control_logic_test.cpp
The file was addedtest/augment_mpc_rotation_control_test.cpp
The file was modifiedtest/CMakeLists.txt
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
Commit b72d6f747d9460cb2b0df84cb9533733a9252bef by 5081703.cr
fix(control): guard MPC during rotation command dropout
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.hpp
The file was modifiedtest/augment_mpc_rotation_control_test.cpp
Commit 3b449fb05c5b7d21836620ae9116992425f70f42 by liuhongshuo
feat: 转向积分补偿释放参数配置化
The file was modifiedalgorithm/ctrl/lon_controller/truck_lon_dynamic_augment_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.cpp
The file was modifieddata/config/cfg_lon_dynamic_mpc.hpp
Commit 6930425329e70d8e2226634e5cf85c296d589340 by liuhongshuo
feat: 变时域横向控制器优化调整
The file was modifiedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_data.cpp
The file was modifieddata/config/cfg_mpc_qp.hpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_data.hpp
The file was modifieddata/config/cfg_mpc_qp.cpp
The file was modifiedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.hpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
Commit 2c14365ecd44d0b0756caf9a4d8271e2bf8ed661 by liuhongshuo
feat:纵向控制器记录消耗时间
The file was modifieddata/ctrl/lateral_ctrl_debug_data.cpp
The file was modifieddata/ctrl_frame.cpp
The file was modifiedalgorithm/ctrl/lat_controller/imv_new_augment_mpc.cpp
The file was modifieddata/lon_dynamics_csv_logger.cpp
The file was modifieddata/ctrl/lateral_ctrl_debug_data.hpp
The file was modifieddata/lon_dynamics_csv_logger.hpp
The file was modifiedalgorithm/ctrl/lat_controller/truck_new_augment_mpc.cpp
The file was modifieddata/ctrl/lat_mpc_debug_snapshot.hpp
The file was modifiedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.cpp
Commit c99e7023c1f54da56525a681048b294e33bef2be by liuhongshuo
feat:IMV 横向控制增加考虑延迟的控制器
The file was addedalgorithm/ctrl/lat_controller/imv_kinematic_variable_horizon_mpc.hpp
The file was modifieddata/config/cfg_mpc_qp.cpp
The file was modifieddata/config/cfg_mpc_qp.hpp
The file was modifieddata/ctrl/lat_mpc_debug_snapshot.hpp
The file was modifiedcommon/util/thr_helper.hpp
The file was modifiedalgorithm/ctrl/lat_controller/truck_kinematic_variable_horizon_mpc.cpp
The file was modifiednode/process/proc/proc_lateral_controller.hpp
The file was addedalgorithm/ctrl/lat_controller/imv_kinematic_variable_horizon_mpc.cpp
The file was modifiedalgorithm/ctrl/lat_controller/qp_solver/mpc_solver.cpp
The file was modifiedalgorithm/ctrl/lat_controller/augment_mpc.cpp
The file was modifiednode/process/proc/proc_lateral_controller.cpp
Commit 0cd819d881a85d8a750b32b2f01480a115a5805a by liuhongshuo
feat: 纵向控制使用的加速度源从定位直接使用切换为根据速度微分
The file was modifieddata/vehicle/vehicle_state.hpp
The file was modifieddata/vehicle/vehicle_state.cpp
Commit d6788726061ce59bd35ba72b1e55b795538289a5 by liuhongshuo
feat: 加速度计算不考虑定位标志位
The file was modifieddata/vehicle/vehicle_state.cpp
The file was modifieddata/vehicle/vehicle_state.hpp

Summary

  1. feat_out: 增加tc (details)
Commit afad8d245fb51de0af51733f4a6ffdd261993e41 by caoxue
feat_out: 增加tc
The file was modifiedinterface/map_elements/lane_info.cc
The file was modifiedinterface/parser/map_loader.cc
The file was modifiedinclude/hdmap_interface/map_elements/lane_info.h
The file was modifiedinclude/hdmap_interface/map_elements/lane.h
The file was modifiedinclude/hdmap_interface/public_data_struct.h