diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..208c88a --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/opt/ros/humble/include/**" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c17", + "cppStandard": "gnu++17", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 9a5341f..7b53f63 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,15 @@ { - "cmake.sourceDirectory": "/home/ray/ROS2Workspace/softwaresystem/RobotOS1" + "cmake.sourceDirectory": "/home/hivecore/ros2_ws/softwaresystem/RobotOS1", + "files.associations": { + "*.launch": "python", + "*.world": "xml", + "*.xacro": "xml", + "array": "cpp", + "bitset": "cpp", + "string_view": "cpp", + "initializer_list": "cpp", + "regex": "cpp", + "utility": "cpp", + "valarray": "cpp" + } } \ No newline at end of file diff --git a/HiveCoreR0/hive_core_bot0.gv b/HiveCoreR0/hive_core_bot0.gv new file mode 100644 index 0000000..2e869bf --- /dev/null +++ b/HiveCoreR0/hive_core_bot0.gv @@ -0,0 +1,47 @@ +digraph G { +node [shape=box]; +"base_link" [label="base_link"]; +"left_hip_pitch_link" [label="left_hip_pitch_link"]; +"left_leg_pitch_link" [label="left_leg_pitch_link"]; +"left_wheel2_link" [label="left_wheel2_link"]; +"left_wheel1_link" [label="left_wheel1_link"]; +"left_shoulder_link" [label="left_shoulder_link"]; +"left_arm1_link" [label="left_arm1_link"]; +"left_arm2_link" [label="left_arm2_link"]; +"right_hip_pitch_link" [label="right_hip_pitch_link"]; +"right_leg_pitch_link" [label="right_leg_pitch_link"]; +"right_wheel2_link" [label="right_wheel2_link"]; +"right_wheel1_link" [label="right_wheel1_link"]; +"right_shoulder_link" [label="right_shoulder_link"]; +"right_arm1_link" [label="right_arm1_link"]; +"right_arm2_link" [label="right_arm2_link"]; +node [shape=ellipse, color=blue, fontcolor=blue]; +"base_link" -> "left_hip_pitch_joint" [label="xyz: -0.06 -0.1358 -0.037269 \nrpy: -1.5708 -0.0095732 0"] +"left_hip_pitch_joint" -> "left_hip_pitch_link" +"left_hip_pitch_link" -> "left_leg_pitch_joint" [label="xyz: 0 0 -0.0295 \nrpy: 0 -0 0.01205"] +"left_leg_pitch_joint" -> "left_leg_pitch_link" +"left_leg_pitch_link" -> "left_wheel2_joint" [label="xyz: 0 0.4805 0.004 \nrpy: 3.14159 -3.30872e-24 -0.0024764"] +"left_wheel2_joint" -> "left_wheel2_link" +"left_hip_pitch_link" -> "left_wheel1_joint" [label="xyz: 0 0.48 0.01 \nrpy: 0 -0 0.0095732"] +"left_wheel1_joint" -> "left_wheel1_link" +"base_link" -> "left_shoulder_joint" [label="xyz: -0.06 -0.0878 0.36288 \nrpy: 0 -0 0"] +"left_shoulder_joint" -> "left_shoulder_link" +"left_shoulder_link" -> "left_arm1_joint" [label="xyz: 0 0 0.0385 \nrpy: 1.5708 4.33681e-19 -0.0074682"] +"left_arm1_joint" -> "left_arm1_link" +"left_arm1_link" -> "left_arm2_joint" [label="xyz: 0.020127 0.0040341 0.17817 \nrpy: -1.6062 0.0074682 4.33693e-19"] +"left_arm2_joint" -> "left_arm2_link" +"base_link" -> "right_hip_pitch_joint" [label="xyz: -0.06 0.1358 -0.037269 \nrpy: 1.5708 -0.0029091 0"] +"right_hip_pitch_joint" -> "right_hip_pitch_link" +"right_hip_pitch_link" -> "right_leg_pitch_joint" [label="xyz: 0 0 -0.0295 \nrpy: 0 0 -0.0029091"] +"right_leg_pitch_joint" -> "right_leg_pitch_link" +"right_leg_pitch_link" -> "right_wheel2_joint" [label="xyz: 1.9386e-05 -0.4805 0.004 \nrpy: -3.14159 -0 0"] +"right_wheel2_joint" -> "right_wheel2_link" +"right_hip_pitch_link" -> "right_wheel1_joint" [label="xyz: 0 -0.48 0.01 \nrpy: 0 0 -0.0029091"] +"right_wheel1_joint" -> "right_wheel1_link" +"base_link" -> "right_shoulder_joint" [label="xyz: -0.06 0.0878 0.36288 \nrpy: 0 -0 0"] +"right_shoulder_joint" -> "right_shoulder_link" +"right_shoulder_link" -> "right_arm1_joint" [label="xyz: 0 0 0.0385 \nrpy: 1.5708 -0 0"] +"right_arm1_joint" -> "right_arm1_link" +"right_arm1_link" -> "right_arm2_joint" [label="xyz: 0.017969 0.0026972 -0.17843 \nrpy: -1.5793 0 0"] +"right_arm2_joint" -> "right_arm2_link" +} diff --git a/HiveCoreR0/hive_core_bot0.pdf b/HiveCoreR0/hive_core_bot0.pdf new file mode 100644 index 0000000..7b61e90 Binary files /dev/null and b/HiveCoreR0/hive_core_bot0.pdf differ diff --git a/HiveCoreR0/src/hive_core_r0/CMakeLists.txt b/HiveCoreR0/src/hive_core_r0/CMakeLists.txt new file mode 100644 index 0000000..a573bfd --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/CMakeLists.txt @@ -0,0 +1,49 @@ +cmake_minimum_required(VERSION 3.10) +project(hive_core_r0) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +# find dependencies +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(geometry_msgs REQUIRED) +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +add_executable(arm_control_node src/arm_control_node.cpp) +ament_target_dependencies(arm_control_node rclcpp geometry_msgs) + +add_executable(hiveBot1_control_node src/hiveBot1_control_node.cpp) +ament_target_dependencies(hiveBot1_control_node rclcpp geometry_msgs) + +add_executable(keyboard_control_node src/keyboard_control_node.cpp) +ament_target_dependencies(keyboard_control_node rclcpp geometry_msgs) + + +install(TARGETS + arm_control_node + hiveBot1_control_node + keyboard_control_node + DESTINATION lib/${PROJECT_NAME}) + + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +install(DIRECTORY launch urdf config world src + DESTINATION share/${PROJECT_NAME} +) + +ament_package() diff --git a/HiveCoreR0/src/hive_core_r0/LICENSE b/HiveCoreR0/src/hive_core_r0/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/HiveCoreR0/src/hive_core_r0/config/bot0_ros2_controller.yaml b/HiveCoreR0/src/hive_core_r0/config/bot0_ros2_controller.yaml new file mode 100644 index 0000000..f1234ef --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/config/bot0_ros2_controller.yaml @@ -0,0 +1,73 @@ +controller_manager: + ros__parameters: + update_rate: 100 # Hz + use_sim_time: true + + # 关节状态广播器 - 必须配置,用于发布关节状态 + bot0_joint_state_broadcaster: + type: joint_state_broadcaster/JointStateBroadcaster + use_sim_time: true + + # 关节位置控制器 + bot0_position_controller: + type: position_controllers/JointGroupPositionController + + # 轮子速度控制器(已从差速控制器改为速度控制器) + bot0_wheel_velocity_controller: + type: velocity_controllers/JointGroupVelocityController + +# 腿部和手臂关节位置控制器配置 +bot0_position_controller: + ros__parameters: + joints: + - left_hip_pitch_joint + - left_leg_pitch_joint + - right_hip_pitch_joint + - right_leg_pitch_joint + - left_shoulder_joint + - left_arm1_joint + - left_arm2_joint + - right_shoulder_joint + - right_arm1_joint + - right_arm2_joint + command_interfaces: + - position + state_interfaces: + - position + - velocity + # 位置控制器PID参数 + gains: + left_hip_pitch_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + left_leg_pitch_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_hip_pitch_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_leg_pitch_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + left_shoulder_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + left_arm1_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + left_arm2_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_shoulder_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_arm1_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_arm2_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + # 位置控制允许的误差范围 + allowable_position_error: 0.1 # 弧度 + +# 轮子速度控制器配置(替代原来的差速控制器) +bot0_wheel_velocity_controller: + ros__parameters: + joints: + - left_wheel1_joint + - left_wheel2_joint + - right_wheel1_joint + - right_wheel2_joint + command_interfaces: + - velocity + state_interfaces: + - position + - velocity + # 速度控制器PID参数 + gains: + left_wheel1_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + left_wheel2_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_wheel1_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + right_wheel2_joint: {p: 1, i: 0.0, d: 0.1, i_clamp: 0.01} + # 速度控制允许的误差范围 + allowable_velocity_error: 0.2 # rad/s diff --git a/HiveCoreR0/src/hive_core_r0/config/bot1_ros2_controller.yaml b/HiveCoreR0/src/hive_core_r0/config/bot1_ros2_controller.yaml new file mode 100644 index 0000000..7ea05fe --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/config/bot1_ros2_controller.yaml @@ -0,0 +1,57 @@ +controller_manager: + ros__parameters: + update_rate: 100 # Hz + use_sim_time: true + + # 关节状态广播器 - 必须配置,用于发布关节状态 + bot1_joint_state_broadcaster: + type: joint_state_broadcaster/JointStateBroadcaster + use_sim_time: true + + # 关节位置控制器 + bot1_position_controller: + type: position_controllers/JointGroupPositionController + +# 腿部和手臂关节位置控制器配置 +bot1_position_controller: + ros__parameters: + joints: + - left_leg1_joint + - left_wheel1_joint + - left_leg2_joint + - left_wheel2_joint + - right_leg1_joint + - right_wheel1_joint + - right_leg2_joint + - right_wheel2_joint + - pitch_body_joint + - left_shoulder_joint + - left_arm1_joint + - left_arm2_joint + - right_shoulder_joint + - right_arm1_joint + - right_arm2_joint + command_interfaces: + - position + state_interfaces: + - position + - velocity + # 位置控制器PID参数 + gains: + left_leg1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_wheel1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_leg2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_wheel2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_leg1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_wheel1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_leg2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_wheel2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + pitch_body_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_shoulder_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_arm1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + left_arm2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_shoulder_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_arm1_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + right_arm2_joint: {p: 10000, i: 0.0, d: 1000, i_clamp: 0.01} + # 位置控制允许的误差范围 + allowable_position_error: 0.1 # 弧度 diff --git a/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot0.launch.py b/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot0.launch.py new file mode 100644 index 0000000..bff4c6a --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot0.launch.py @@ -0,0 +1,119 @@ +import os +import launch +import launch_ros +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, ExecuteProcess, RegisterEventHandler +from launch.substitutions import LaunchConfiguration, Command, PathJoinSubstitution, FindExecutable +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare +from launch.actions import IncludeLaunchDescription +from launch.launch_description_sources import PythonLaunchDescriptionSource +from ament_index_python.packages import get_package_share_directory +from launch_ros.parameter_descriptions import ParameterValue +from launch.event_handlers import OnProcessStart +from launch.actions import TimerAction + +def generate_launch_description(): + # 声明参数 + robot_name_in_model = "HiveBot0" + urdf_package = 'hive_core_r0' + urdf_tutorial_path = get_package_share_directory(urdf_package) + default_world_path = os.path.join(urdf_tutorial_path, 'world', 'table.world') + default_model_path = urdf_tutorial_path + '/urdf/hiveBot0/hive_core_bot0.urdf.xacro' + + # 声明模型路径参数 + action_declare_arg_mode_path = launch.actions.DeclareLaunchArgument( + name='model', default_value=str(default_model_path), + description='URDF 的绝对路径') + + # 获取文件内容生成新的参数 + robot_description = launch_ros.parameter_descriptions.ParameterValue( + launch.substitutions.Command( + ['xacro ', launch.substitutions.LaunchConfiguration('model')]), + value_type=str) + + # 声明机器人状态发布节点 + robot_state_publisher_node = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + parameters=[{'robot_description': robot_description}], + ) + + # 启动Gazebo - 添加 paused=true 参数使仿真暂停 + launch_gazebo = IncludeLaunchDescription( + PythonLaunchDescriptionSource([ + os.path.join(get_package_share_directory('gazebo_ros'), 'launch', + 'gazebo.launch.py') + ]), + launch_arguments={ + # 'world': default_world_path, + 'verbose': 'true', + }.items() + ) + + # 在Gazebo中生成机器人 + spawn_entity_node = Node( + package='gazebo_ros', + executable='spawn_entity.py', + arguments=[ + '-entity', robot_name_in_model, # 模型名称 + '-topic', '/robot_description', # 从ROS话题获取URDF + '-x', '0.0', # 初始位置x + '-y', '0.0', # 初始位置y + '-z', '0.55', # 初始位置z (高于地面) + '-Y', '0.0' # 初始朝向 + ] + ) + + # 加载并激活 load_joint_state_controller 控制器 + load_joint_state_controller = launch.actions.ExecuteProcess( + cmd=['ros2', 'control', 'load_controller', '--set-state', 'active', + 'bot0_joint_state_broadcaster'], + output='screen' + ) + + # 加载并激活 load_bot0_position_controller 控制器 + load_bot0_position_controller = launch.actions.ExecuteProcess( + cmd=['ros2', 'control', 'load_controller', '--set-state', 'active','bot0_position_controller'], + output='screen') + + load_bot0_wheel_velocity_controller = launch.actions.ExecuteProcess( + cmd=['ros2', 'control', 'load_controller', '--set-state', 'active','bot0_wheel_velocity_controller'], + output='screen') + + action_node_arm_control = launch_ros.actions.Node( + package='hive_core_r0', + executable='arm_control_node', + name='arm_control_node', + output='screen' + ) + + return LaunchDescription([ + action_declare_arg_mode_path, + + # 先启动Gazebo + launch_gazebo, + + # 然后启动状态发布器 + robot_state_publisher_node, + + # 延迟后生成机器人(确保Gazebo完全启动) + TimerAction( + period= 5.0, + actions=[spawn_entity_node] + ), + + # 事件动作,当加载机器人结束后执行 + launch.actions.RegisterEventHandler( + event_handler=launch.event_handlers.OnProcessExit( + target_action=spawn_entity_node, + on_exit=[load_joint_state_controller, load_bot0_position_controller, load_bot0_wheel_velocity_controller],) + ), + + launch.actions.RegisterEventHandler( + event_handler=launch.event_handlers.OnProcessExit( + target_action=load_bot0_position_controller, + on_exit=[action_node_arm_control],) + ), + + ]) \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot1.launch.py b/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot1.launch.py new file mode 100644 index 0000000..3c041b7 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/launch/gazebo_sim_bot1.launch.py @@ -0,0 +1,140 @@ +import os +import launch +import launch_ros +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, ExecuteProcess, RegisterEventHandler +from launch.substitutions import LaunchConfiguration, Command, PathJoinSubstitution, FindExecutable +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare +from launch.actions import IncludeLaunchDescription +from launch.launch_description_sources import PythonLaunchDescriptionSource +from ament_index_python.packages import get_package_share_directory +from launch_ros.parameter_descriptions import ParameterValue +from launch.event_handlers import OnProcessStart +from launch.actions import TimerAction + +def generate_launch_description(): + # 声明参数 + robot_name_in_model = "HiveBot0" + urdf_package = 'hive_core_r0' + urdf_tutorial_path = get_package_share_directory(urdf_package) + default_model_path = urdf_tutorial_path + '/urdf/hiveBot1/hive_core_bot1.urdf.xacro' + default_world_path = os.path.join(urdf_tutorial_path, 'world', 'empty.world') + + # 声明模型路径参数 + action_declare_arg_mode_path = launch.actions.DeclareLaunchArgument( + name='model', default_value=str(default_model_path), + description='URDF 的绝对路径') + + # 获取文件内容生成新的参数 + robot_description = launch_ros.parameter_descriptions.ParameterValue( + launch.substitutions.Command( + ['xacro ', launch.substitutions.LaunchConfiguration('model')]), + value_type=str) + + # 声明机器人状态发布节点 + robot_state_publisher_node = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + parameters=[{'robot_description': robot_description}], + ) + + # 启动Gazebo - 添加 paused=true 参数使仿真暂停 + launch_gazebo = IncludeLaunchDescription( + PythonLaunchDescriptionSource([ + os.path.join(get_package_share_directory('gazebo_ros'), 'launch', + 'gazebo.launch.py') + ]), + launch_arguments={ + 'world': default_world_path, + 'verbose': 'true', + }.items() + ) + + # 在Gazebo中生成机器人 + spawn_entity_node = Node( + package='gazebo_ros', + executable='spawn_entity.py', + arguments=[ + '-entity', robot_name_in_model, # 模型名称 + '-topic', '/robot_description', # 从ROS话题获取URDF + '-x', '0.0', # 初始位置x + '-y', '0.0', # 初始位置y + '-z', '0.45', # 初始位置z (高于地面) + '-Y', '0.0' # 初始朝向 + ] + ) + + # 1. 启动controller_manager(通常由gazebo_ros2_control自动启动,若未启动则显式添加) + controller_manager_node = Node( + package="controller_manager", + executable="ros2_control_node", + parameters=[ + {'robot_description': robot_description}, + os.path.join(urdf_tutorial_path, 'config', 'bot1_ros2_controller.yaml') # 显式指定配置文件 + ], + output="screen" + ) + + # 加载并激活 load_joint_state_controller 控制器 + load_joint_state_controller = TimerAction( + period=3.0, # 延迟3秒,等待初始化 + actions=[ExecuteProcess( + cmd=['ros2', 'control', 'load_controller', '--set-state', 'active', + 'bot1_joint_state_broadcaster'], + output='screen' + )] + ) + + # 加载并激活 load_bot0_position_controller 控制器 + load_bot1_position_controller = TimerAction( + period=2.0, # 延迟2秒 + actions=[ExecuteProcess( + cmd=['ros2', 'control', 'load_controller', '--set-state', 'active', + 'bot1_position_controller'], + output='screen' + )] + ) + + + action_node_hiveBot1_control = launch_ros.actions.Node( + package='hive_core_r0', + executable='hiveBot1_control_node', + name='hiveBot1_control_node', + output='screen' + ) + + # 4. 延迟启动控制节点(在位置控制器加载后) + start_control_node = TimerAction( + period=2.0, + actions=[action_node_hiveBot1_control] + ) + + keyboard_control_node = launch_ros.actions.Node( + package='hive_core_r0', + executable='keyboard_control_node', + name='keyboard_control_node', + output='screen' + ) + # 5. 延迟启动键盘控制节点(在控制节点启动后) + start_keyboard_control_node = TimerAction( + period=2.0, + actions=[keyboard_control_node] + ) + + # 在LaunchDescription中按顺序添加 + return LaunchDescription([ + action_declare_arg_mode_path, + launch_gazebo, + robot_state_publisher_node, + # 延迟后生成机器人(确保Gazebo完全启动) + TimerAction( + period= 5.0, + actions=[spawn_entity_node] + ), + controller_manager_node, # 显式启动控制器管理器 + load_joint_state_controller, + load_bot1_position_controller, + start_control_node, + # start_keyboard_control_node, + ]) \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/package.xml b/HiveCoreR0/src/hive_core_r0/package.xml new file mode 100644 index 0000000..dae87e2 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/package.xml @@ -0,0 +1,18 @@ + + + + hive_core_r0 + 0.0.0 + TODO: Package description + hivecore + Apache-2.0 + + ament_cmake + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/HiveCoreR0/src/hive_core_r0/src/arm_control_node.cpp b/HiveCoreR0/src/hive_core_r0/src/arm_control_node.cpp new file mode 100644 index 0000000..e258d60 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/src/arm_control_node.cpp @@ -0,0 +1,116 @@ +#include "rclcpp/rclcpp.hpp" +#include "std_msgs/msg/float64_multi_array.hpp" +#include +#include + +using namespace std::chrono_literals; + +class ArmSineMotionNode : public rclcpp::Node +{ +public: + ArmSineMotionNode() : Node("arm_sine_motion_node") + { + // 1. 声明并获取参数(振幅默认50度,频率默认0.5Hz) + this->declare_parameter("amplitude_deg", 50.0); // 振幅(度) + this->declare_parameter("frequency", 0.5); // 频率(Hz) + this->declare_parameter("control_period_ms", 1); // 控制周期(毫秒,默认20ms=50Hz) + + // 2. 读取参数并转换单位(度→弧度) + double amplitude_deg = this->get_parameter("amplitude_deg").as_double(); + amplitude_rad_ = amplitude_deg * M_PI / 180.0; // 50度→弧度 + frequency_ = this->get_parameter("frequency").as_double(); + int period_ms = this->get_parameter("control_period_ms").as_int(); + + // 3. 手臂关节在控制器指令数组中的索引(对应joints配置顺序) + // 控制器joints顺序:[0-3腿部, 4-9手臂] + arm_joint_indices_ = {4, 5, 6, 7, 8, 9}; // 6个手臂关节索引 + total_joints_ = 10; // 控制器总关节数(4腿部+6手臂) + + // 4. 创建发布者(发送位置指令到位置控制器) + cmd_pub_ = this->create_publisher( + "/bot0_position_controller/commands", + 10 + ); + + // 5. 创建定时器(周期性发送指令) + timer_ = this->create_wall_timer( + std::chrono::milliseconds(period_ms), + std::bind(&ArmSineMotionNode::timer_callback, this) + ); + + // 6. 记录起始时间(用于计算正弦运动相位) + start_time_ = this->now(); + RCLCPP_INFO(this->get_logger(), "手臂正弦运动节点启动(振幅50度,频率%.2fHz)", frequency_); + } + + void RestJoint() + { + auto reset_msg = std_msgs::msg::Float64MultiArray(); + reset_msg.data.resize(10, 0.0); + cmd_pub_->publish(reset_msg); + } + +private: + void timer_callback() + { + // 1. 计算当前运动时间(秒) + rclcpp::Duration elapsed = this->now() - start_time_; + double current_time = elapsed.seconds(); + + // 2. 计算正弦位置:y = A*sin(2πft) + // A=振幅(弧度),f=频率(Hz),t=时间(秒) + double sine_pos = amplitude_rad_ * std::sin(2 * M_PI * frequency_ * current_time); + + // 3. 构建指令数组(10个关节:腿部保持0,手臂按正弦运动) + auto cmd_msg = std_msgs::msg::Float64MultiArray(); + cmd_msg.data.resize(total_joints_, 0.0); // 初始化所有关节为0 + + // 4. 为手臂关节赋值正弦位置 + // for (size_t i = 0; i < arm_joint_indices_.size(); ++i) { + // int joint_idx = arm_joint_indices_[i]; + // cmd_msg.data[joint_idx] = 0;//sine_pos; // 所有手臂关节同步运动 + // } + + for (int i = 0; i < total_joints_; ++i) { + // int joint_idx = arm_joint_indices_[i]; + if (i == 1 || i == 3) + { + cmd_msg.data[i] = sine_pos * 2; + } + else + { + cmd_msg.data[i] = sine_pos; // 所有手臂关节同步运动 + } + } + + cmd_msg.data.resize(total_joints_, 0.0); // 初始化所有关节为0 + + // 5. 发送指令 + cmd_pub_->publish(cmd_msg); + } + + // 成员变量 + rclcpp::Publisher::SharedPtr cmd_pub_; + rclcpp::TimerBase::SharedPtr timer_; + rclcpp::Time start_time_; // 起始时间 + double amplitude_rad_; // 振幅(弧度) + double frequency_; // 频率(Hz) + std::vector arm_joint_indices_; // 手臂关节索引 + int total_joints_; // 总关节数 +}; + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + auto node = std::make_shared(); + + // 运行节点(按Ctrl+C退出) + rclcpp::spin(node); + + // 退出时发送复位指令(所有关节回0) + node->RestJoint(); + RCLCPP_INFO(node->get_logger(), "节点退出,发送复位指令"); + + rclcpp::shutdown(); + return 0; +} diff --git a/HiveCoreR0/src/hive_core_r0/src/hiveBot1_control_node.cpp b/HiveCoreR0/src/hive_core_r0/src/hiveBot1_control_node.cpp new file mode 100644 index 0000000..83b9617 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/src/hiveBot1_control_node.cpp @@ -0,0 +1,336 @@ +#include "rclcpp/rclcpp.hpp" +#include "std_msgs/msg/float64_multi_array.hpp" +#include "geometry_msgs/msg/twist.hpp" +#include +#include +#include +#include +#include + +using namespace std::chrono_literals; + +// 键盘输入处理函数(非阻塞模式) +int kbhit() +{ + struct termios oldt, newt; + int ch; + int oldf; + + tcgetattr(STDIN_FILENO, &oldt); + newt = oldt; + newt.c_lflag &= ~(ICANON | ECHO); + tcsetattr(STDIN_FILENO, TCSANOW, &newt); + oldf = fcntl(STDIN_FILENO, F_GETFL, 0); + fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK); + + ch = getchar(); + + tcsetattr(STDIN_FILENO, TCSANOW, &oldt); + fcntl(STDIN_FILENO, F_SETFL, oldf); + + if(ch != EOF) + { + ungetc(ch, stdin); + return 1; + } + + return 0; +} + +class RobotPhaseMotionNode : public rclcpp::Node +{ +public: + RobotPhaseMotionNode() : Node("robot_phase_motion_node") + { + // 声明并获取参数 + this->declare_parameter("leg_target_deg", 0.0); // 腿部目标角度(度) + this->declare_parameter("arm_amplitude_deg", 30.0); // 手臂摆动振幅(度) + this->declare_parameter("arm_frequency", 0.5); // 手臂摆动频率(Hz) + this->declare_parameter("control_period_ms", 10); // 控制周期(毫秒) + this->declare_parameter("wheel_radius", 0.05); // 轮子半径(米) + this->declare_parameter("wheel_separation", 0.3); // 轮距(米) + this->declare_parameter("linear_speed", 0.2); // 线速度(m/s) + this->declare_parameter("angular_speed", 0.5); // 角速度(rad/s) + + // 读取参数并转换单位 + double leg_target_deg = this->get_parameter("leg_target_deg").as_double(); + leg_target_rad_ = leg_target_deg * M_PI / 180.0; + + double arm_amplitude_deg = this->get_parameter("arm_amplitude_deg").as_double(); + arm_amplitude_rad_ = arm_amplitude_deg * M_PI / 180.0; + + arm_frequency_ = this->get_parameter("arm_frequency").as_double(); + int period_ms = this->get_parameter("control_period_ms").as_int(); + wheel_radius_ = this->get_parameter("wheel_radius").as_double(); + wheel_separation_ = this->get_parameter("wheel_separation").as_double(); + linear_speed_ = this->get_parameter("linear_speed").as_double(); + angular_speed_ = this->get_parameter("angular_speed").as_double(); + joint_directions_ = {1, -1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; // 关节方向 + + total_joints_ = 15; // 总关节数 + + // 关节索引定义 + leg_joint_indices_ = {0, 2, 4, 6}; // 腿部关节索引 + arm_joint_indices_ = {9, 10, 11, 12, 13}; // 手臂关节索引 + wheel_joint_indices_ = {1, 5}; // 轮子关节索引(left_wheel1, right_wheel1 )两个主动轮 + wheel_joint_directions_ = {-1, 1}; // 轮子方向 + + // 初始化轮子目标角度 + wheel_targets_.resize(2, 0.0); + + // 创建发布者 + cmd_pub_ = this->create_publisher( + "/bot1_position_controller/commands", 10 + ); + + // 创建订阅者(接收来自速度指令) + twist_sub_ = this->create_subscription( + "/cmd_vel", 10, + std::bind(&RobotPhaseMotionNode::twist_callback, this, std::placeholders::_1) + ); + + // 创建定时器 + timer_ = this->create_wall_timer( + std::chrono::milliseconds(period_ms), + std::bind(&RobotPhaseMotionNode::timer_callback, this) + ); + + // 记录起始时间 + start_time_ = this->now(); + last_time_ = this->now(); + + // 打印控制说明 + print_help(); + RCLCPP_INFO(this->get_logger(), "机器人分阶段运动节点启动(含轮子控制)"); + } + + // 关节复位 + void resetJoints() + { + auto reset_msg = std_msgs::msg::Float64MultiArray(); + reset_msg.data.resize(total_joints_, 0.0); + cmd_pub_->publish(reset_msg); + } + +private: + void print_help() + { + RCLCPP_INFO(this->get_logger(), "键盘控制说明:"); + RCLCPP_INFO(this->get_logger(), " w : 前进"); + RCLCPP_INFO(this->get_logger(), " s : 后退"); + RCLCPP_INFO(this->get_logger(), " a : 左转"); + RCLCPP_INFO(this->get_logger(), " d : 右转"); + RCLCPP_INFO(this->get_logger(), " x : 停止"); + RCLCPP_INFO(this->get_logger(), " q : 退出"); + } + + void twist_callback(const geometry_msgs::msg::Twist::SharedPtr msg) + { + // 接收外部速度指令 + linear_x_ = msg->linear.x; + angular_z_ = msg->angular.z; + } + + void timer_callback() + { + // 处理键盘输入 + handle_keyboard_input(); + + // 计算时间差 + rclcpp::Time current_time = this->now(); + rclcpp::Duration dt = current_time - last_time_; + double dt_sec = dt.seconds(); + last_time_ = current_time; + + // 构建指令数组 + auto cmd_msg = std_msgs::msg::Float64MultiArray(); + cmd_msg.data.resize(total_joints_, 0.0); + + // 分阶段控制腿部和手臂 + double phase_time = (current_time - start_time_).seconds(); + handle_phase_motion(cmd_msg, phase_time); + + // 计算并设置轮子角度 + handle_wheel_control(cmd_msg, dt_sec); + + // 发送指令 + cmd_pub_->publish(cmd_msg); + } + + void handle_phase_motion(std_msgs::msg::Float64MultiArray& cmd_msg, double current_time) + { + // 第一阶段:前5秒,腿部关节缓慢张开 + if (current_time <= 5.0) + { + double progress = current_time / 5.0; + double current_leg_angle = leg_target_rad_ * progress; + + // 设置腿部关节角度 + for (int idx : leg_joint_indices_) + { + if (idx == 0 || idx == 4) // 左腿1、左腿2关节 + { + cmd_msg.data[idx] = -current_leg_angle; + } + else + { + cmd_msg.data[idx] = current_leg_angle; + } + } + + // 手臂保持初始位置 + for (int idx : arm_joint_indices_) + { + cmd_msg.data[idx] = 0.0; + } + + if (current_time >= 4.9 && !phase1_notified_) + { + RCLCPP_INFO(this->get_logger(), "第一阶段即将结束,准备进入手臂摆动阶段"); + phase1_notified_ = true; + } + } + // 第二阶段:5秒后,双臂做摆手动作 + else + { + // 腿部保持在目标角度 + for (int idx : leg_joint_indices_) + { + if (idx == 0 || idx == 4) // 左腿1、左腿2关节 + { + cmd_msg.data[idx] = -leg_target_rad_; + } + else + { + cmd_msg.data[idx] = leg_target_rad_; + } + } + + // 计算手臂摆动角度 + double arm_phase_time = current_time - 5.0; + double arm_angle = arm_amplitude_rad_ * std::sin(2 * M_PI * arm_frequency_ * arm_phase_time); + + // 设置手臂关节角度(左右臂对称) + for (size_t i = 0; i < arm_joint_indices_.size(); ++i) + { + if (i >= arm_joint_indices_.size() / 2) + { + cmd_msg.data[arm_joint_indices_[i]] = -arm_angle; + } + else + { + cmd_msg.data[arm_joint_indices_[i]] = arm_angle; + } + + cmd_msg.data[arm_joint_indices_[i]] = 0; + } + } + } + + void handle_wheel_control(std_msgs::msg::Float64MultiArray& cmd_msg, double dt_sec) + { + // 计算左右轮目标线速度 + double left_speed = linear_x_ + (angular_z_ * wheel_separation_) / 2.0; + double right_speed = linear_x_ - (angular_z_ * wheel_separation_) / 2.0; + + // 计算轮子角速度(rad/s) + double left_omega = left_speed / wheel_radius_; + double right_omega = right_speed / wheel_radius_; + + // 积分计算目标角度(弧度) + wheel_targets_[0] += left_omega * dt_sec; // left_wheel1 + wheel_targets_[1] += right_omega * dt_sec; // right_wheel1 + + // 赋值轮子目标角度到指令数组 + for (size_t i = 0; i < wheel_joint_indices_.size(); ++i) + { + cmd_msg.data[wheel_joint_indices_[i]] = wheel_joint_directions_[i] * wheel_targets_[i]; + } + } + + void handle_keyboard_input() + { + if(kbhit()) + { + char key = getchar(); + switch(key) + { + case 'w': // 前进 + linear_x_ = linear_speed_; + angular_z_ = 0.0; + RCLCPP_INFO(this->get_logger(), "前进"); + break; + case 's': // 后退 + linear_x_ = -linear_speed_; + angular_z_ = 0.0; + RCLCPP_INFO(this->get_logger(), "后退"); + break; + case 'a': // 左转 + linear_x_ = 0.0; + angular_z_ = angular_speed_; + RCLCPP_INFO(this->get_logger(), "左转"); + break; + case 'd': // 右转 + linear_x_ = 0.0; + angular_z_ = -angular_speed_; + RCLCPP_INFO(this->get_logger(), "右转"); + break; + case 'x': // 停止 + linear_x_ = 0.0; + angular_z_ = 0.0; + RCLCPP_INFO(this->get_logger(), "停止"); + break; + case 'q': // 退出 + RCLCPP_INFO(this->get_logger(), "退出控制"); + resetJoints(); + rclcpp::shutdown(); + exit(0); + break; + default: + print_help(); + break; + } + } + } + + // 成员变量 + rclcpp::Publisher::SharedPtr cmd_pub_; + rclcpp::Subscription::SharedPtr twist_sub_; + rclcpp::TimerBase::SharedPtr timer_; + rclcpp::Time start_time_; + rclcpp::Time last_time_; + + // 运动参数 + double leg_target_rad_; // 腿部目标角度(弧度) + double arm_amplitude_rad_; // 手臂摆动振幅(弧度) + double arm_frequency_; // 手臂摆动频率(Hz) + int total_joints_; // 总关节数 + bool phase1_notified_ = false; // 第一阶段结束提示标记 + + // 关节索引 + std::vector leg_joint_indices_; // 腿部关节索引 + std::vector arm_joint_indices_; // 手臂关节索引 + std::vector wheel_joint_indices_; // 轮子关节索引 + std::vector joint_directions_; // 关节方向 + std::vector wheel_joint_directions_; // 轮子关节方向 + + // 轮子控制相关 + double wheel_radius_; // 轮子半径(米) + double wheel_separation_; // 轮距(米) + std::vector wheel_targets_; // 轮子目标角度(弧度) + double linear_x_ = 0.0; // 线速度(m/s) + double angular_z_ = 0.0; // 角速度(rad/s) + double linear_speed_; // 最大线速度(m/s) + double angular_speed_; // 最大角速度(rad/s) +}; + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + auto node = std::make_shared(); + rclcpp::spin(node); + node->resetJoints(); + RCLCPP_INFO(node->get_logger(), "节点退出,发送复位指令"); + rclcpp::shutdown(); + return 0; +} diff --git a/HiveCoreR0/src/hive_core_r0/src/keyboard_control_node.cpp b/HiveCoreR0/src/hive_core_r0/src/keyboard_control_node.cpp new file mode 100644 index 0000000..3513314 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/src/keyboard_control_node.cpp @@ -0,0 +1,140 @@ +#include "rclcpp/rclcpp.hpp" +#include "geometry_msgs/msg/twist.hpp" +#include +#include +#include +#include + +using namespace std::chrono_literals; + +// 键盘输入处理函数(非阻塞模式) +int kbhit() +{ + struct termios oldt, newt; + int ch; + int oldf; + + tcgetattr(STDIN_FILENO, &oldt); + newt = oldt; + newt.c_lflag &= ~(ICANON | ECHO); + tcsetattr(STDIN_FILENO, TCSANOW, &newt); + oldf = fcntl(STDIN_FILENO, F_GETFL, 0); + fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK); + + ch = getchar(); + + tcsetattr(STDIN_FILENO, TCSANOW, &oldt); + fcntl(STDIN_FILENO, F_SETFL, oldf); + + if(ch != EOF) + { + ungetc(ch, stdin); + return 1; + } + + return 0; +} + +class KeyboardControlNode : public rclcpp::Node +{ +public: + KeyboardControlNode() : Node("keyboard_control_node") + { + // 声明参数:移动速度、旋转速度 + this->declare_parameter("linear_speed", 0.2); // 线速度(m/s) + this->declare_parameter("angular_speed", 0.5); // 角速度(rad/s) + + // 读取参数 + linear_speed_ = this->get_parameter("linear_speed").as_double(); + angular_speed_ = this->get_parameter("angular_speed").as_double(); + + // 创建发布者(发送速度指令) + twist_pub_ = this->create_publisher( + "/cmd_vel", 10 + ); + + // 打印控制说明 + print_help(); + + // 创建定时器(周期性检查键盘输入) + timer_ = this->create_wall_timer( + 50ms, // 20Hz检查频率 + std::bind(&KeyboardControlNode::timer_callback, this) + ); + } + +private: + void print_help() + { + RCLCPP_INFO(this->get_logger(), "键盘控制说明:"); + RCLCPP_INFO(this->get_logger(), " w : 前进"); + RCLCPP_INFO(this->get_logger(), " s : 后退"); + RCLCPP_INFO(this->get_logger(), " a : 左转"); + RCLCPP_INFO(this->get_logger(), " d : 右转"); + RCLCPP_INFO(this->get_logger(), " x : 停止"); + RCLCPP_INFO(this->get_logger(), " q : 退出"); + } + + void timer_callback() + { + geometry_msgs::msg::Twist twist_msg; + + if(kbhit()) + { + char key = getchar(); + switch(key) + { + case 'w': // 前进 + twist_msg.linear.x = linear_speed_; + twist_msg.angular.z = 0.0; + RCLCPP_INFO(this->get_logger(), "前进"); + break; + case 's': // 后退 + twist_msg.linear.x = -linear_speed_; + twist_msg.angular.z = 0.0; + RCLCPP_INFO(this->get_logger(), "后退"); + break; + case 'a': // 左转 + twist_msg.linear.x = 0.0; + twist_msg.angular.z = angular_speed_; + RCLCPP_INFO(this->get_logger(), "左转"); + break; + case 'd': // 右转 + twist_msg.linear.x = 0.0; + twist_msg.angular.z = -angular_speed_; + RCLCPP_INFO(this->get_logger(), "右转"); + break; + case 'x': // 停止 + twist_msg.linear.x = 0.0; + twist_msg.angular.z = 0.0; + RCLCPP_INFO(this->get_logger(), "停止"); + break; + case 'q': // 退出 + RCLCPP_INFO(this->get_logger(), "退出控制"); + rclcpp::shutdown(); + return; + default: + twist_msg.linear.x = 0.0; + twist_msg.angular.z = 0.0; + print_help(); + break; + } + twist_pub_->publish(twist_msg); + } + } + + // 成员变量 + rclcpp::Publisher::SharedPtr twist_pub_; + rclcpp::TimerBase::SharedPtr timer_; + double linear_speed_; // 线速度(m/s) + double angular_speed_; // 角速度(rad/s) +}; + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + auto node = std::make_shared(); + rclcpp::spin(node); + rclcpp::shutdown(); + return 0; +} diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/bot0.ros2_control.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/bot0.ros2_control.xacro new file mode 100644 index 0000000..01c05bb --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/bot0.ros2_control.xacro @@ -0,0 +1,165 @@ + + + + + + + + + gazebo_ros2_control/GazeboSystem + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + -1.0 + 1.0 + + + + + + + + + + -50 + 50 + + + + + + + + + -50 + 50 + + + + + + + + + -50 + 50 + + + + + + + + + -50 + 50 + + + + + + + + + + + + $(find hive_core_r0)/config/bot0_ros2_controller.yaml + + + + diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_joint.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_joint.xacro new file mode 100644 index 0000000..b9a5b58 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_joint.xacro @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_link.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_link.xacro new file mode 100644 index 0000000..e73dc45 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/generic_link.xacro @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1e3 + 1e2 + 0.8 + 0.8 + 0.001 + + + + 0.0 + 10000.0 + + + + + + + + \ No newline at end of file diff --git a/RobotOS1/urdf/robot3.urdf b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf similarity index 85% rename from RobotOS1/urdf/robot3.urdf rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf index 69b1b42..a7bc75f 100755 --- a/RobotOS1/urdf/robot3.urdf +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf @@ -3,13 +3,7 @@ Commit Version: 1.6.0-1-g15f4949 Build Version: 1.6.7594.29634 For more information, please see http://wiki.ros.org/sw_urdf_exporter --> - - - + name="hive_core_bot0"> @@ -33,7 +27,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/base_link.STL" /> @@ -47,7 +41,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/base_link.STL" /> @@ -73,7 +67,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_hip_pitch_link.STL" /> @@ -87,7 +81,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_hip_pitch_link.STL" /> @@ -131,7 +125,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_leg_pitch_link.STL" /> @@ -145,7 +139,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_leg_pitch_link.STL" /> @@ -189,7 +183,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_wheel2_link.STL" /> @@ -203,7 +197,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_wheel2_link.STL" /> @@ -247,7 +241,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_wheel1_link.STL" /> @@ -261,7 +255,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_wheel1_link.STL" /> @@ -305,7 +299,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_hip_pitch_link.STL" /> @@ -319,7 +313,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_hip_pitch_link.STL" /> @@ -363,7 +357,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_leg_pitch_link.STL" /> @@ -377,7 +371,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_leg_pitch_link.STL" /> @@ -421,7 +415,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_wheel2_link.STL" /> @@ -435,7 +429,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_wheel2_link.STL" /> @@ -479,7 +473,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_wheel1_link.STL" /> @@ -493,7 +487,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_wheel1_link.STL" /> @@ -537,7 +531,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_shoulder_link.STL" /> @@ -551,7 +545,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_shoulder_link.STL" /> @@ -595,7 +589,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_arm1_link.STL" /> @@ -609,7 +603,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_arm1_link.STL" /> @@ -653,7 +647,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_arm2_link.STL" /> @@ -667,7 +661,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/left_arm2_link.STL" /> @@ -711,7 +705,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_shoulder_link.STL" /> @@ -725,7 +719,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_shoulder_link.STL" /> @@ -769,7 +763,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_arm1_link.STL" /> @@ -783,7 +777,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_arm1_link.STL" /> @@ -827,7 +821,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_arm2_link.STL" /> @@ -841,7 +835,7 @@ rpy="0 0 0" /> + filename="package://urdf/meshes/meshes/right_arm2_link.STL" /> diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf copy.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf copy.xacro new file mode 100644 index 0000000..a45e144 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf copy.xacro @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf.xacro new file mode 100644 index 0000000..2570beb --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/hive_core_bot0.urdf.xacro @@ -0,0 +1,438 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/RobotOS1/meshes/base_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/base_link.STL similarity index 100% rename from RobotOS1/meshes/base_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/base_link.STL diff --git a/RobotOS1/meshes/left_arm1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_arm1_link.STL similarity index 100% rename from RobotOS1/meshes/left_arm1_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_arm1_link.STL diff --git a/RobotOS1/meshes/left_arm2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_arm2_link.STL similarity index 100% rename from RobotOS1/meshes/left_arm2_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_arm2_link.STL diff --git a/RobotOS1/meshes/left_hip_pitch_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_hip_pitch_link.STL similarity index 100% rename from RobotOS1/meshes/left_hip_pitch_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_hip_pitch_link.STL diff --git a/RobotOS1/meshes/left_leg_pitch_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_leg_pitch_link.STL similarity index 100% rename from RobotOS1/meshes/left_leg_pitch_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_leg_pitch_link.STL diff --git a/RobotOS1/meshes/left_shoulder_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_shoulder_link.STL similarity index 100% rename from RobotOS1/meshes/left_shoulder_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_shoulder_link.STL diff --git a/RobotOS1/meshes/left_wheel1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_wheel1_link.STL similarity index 100% rename from RobotOS1/meshes/left_wheel1_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_wheel1_link.STL diff --git a/RobotOS1/meshes/left_wheel2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_wheel2_link.STL similarity index 100% rename from RobotOS1/meshes/left_wheel2_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/left_wheel2_link.STL diff --git a/RobotOS1/meshes/right_arm1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_arm1_link.STL similarity index 100% rename from RobotOS1/meshes/right_arm1_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_arm1_link.STL diff --git a/RobotOS1/meshes/right_arm2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_arm2_link.STL similarity index 100% rename from RobotOS1/meshes/right_arm2_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_arm2_link.STL diff --git a/RobotOS1/meshes/right_hip_pitch_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_hip_pitch_link.STL similarity index 100% rename from RobotOS1/meshes/right_hip_pitch_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_hip_pitch_link.STL diff --git a/RobotOS1/meshes/right_leg_pitch_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_leg_pitch_link.STL similarity index 100% rename from RobotOS1/meshes/right_leg_pitch_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_leg_pitch_link.STL diff --git a/RobotOS1/meshes/right_shoulder_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_shoulder_link.STL similarity index 100% rename from RobotOS1/meshes/right_shoulder_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_shoulder_link.STL diff --git a/RobotOS1/meshes/right_wheel1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_wheel1_link.STL similarity index 100% rename from RobotOS1/meshes/right_wheel1_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_wheel1_link.STL diff --git a/RobotOS1/meshes/right_wheel2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_wheel2_link.STL similarity index 100% rename from RobotOS1/meshes/right_wheel2_link.STL rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/right_wheel2_link.STL diff --git a/RobotOS1/urdf/meshes/robot_roll.py b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/robot_roll.py similarity index 100% rename from RobotOS1/urdf/meshes/robot_roll.py rename to HiveCoreR0/src/hive_core_r0/urdf/hiveBot0/meshes/robot_roll.py diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/bot1_ros2_control.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/bot1_ros2_control.xacro new file mode 100644 index 0000000..e883387 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/bot1_ros2_control.xacro @@ -0,0 +1,118 @@ + + + + + + + + + gazebo_ros2_control/GazeboSystem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(find hive_core_r0)/config/bot1_ros2_controller.yaml + + + + + \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_joint.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_joint.xacro new file mode 100644 index 0000000..733ed6b --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_joint.xacro @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_link.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_link.xacro new file mode 100644 index 0000000..d3ec06c --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/generic_link.xacro @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5e5 + + 2e4 + + 1000 + 1000 + + 0.005 + + 0.1 + + + + + 0.0 + + 0.0 + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf new file mode 100644 index 0000000..e647403 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf.xacro b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf.xacro new file mode 100644 index 0000000..036b193 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/hive_core_bot1.urdf.xacro @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/base_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/base_link.STL new file mode 100644 index 0000000..6620875 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/base_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm1_link.STL new file mode 100644 index 0000000..ce72a37 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm2_link.STL new file mode 100644 index 0000000..2f27263 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_arm2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg1_link.STL new file mode 100644 index 0000000..aaa8c35 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg2_link.STL new file mode 100644 index 0000000..50f0fa8 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_leg2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_shoulder_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_shoulder_link.STL new file mode 100644 index 0000000..309546c Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_shoulder_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel1_link.STL new file mode 100644 index 0000000..b222877 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel2_link.STL new file mode 100644 index 0000000..3c9e7ca Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/left_wheel2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/pitch_body_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/pitch_body_link.STL new file mode 100644 index 0000000..1470a0d Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/pitch_body_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm1_link.STL new file mode 100644 index 0000000..ddfb601 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm2_link.STL new file mode 100644 index 0000000..d297888 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_arm2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg1_link.STL new file mode 100644 index 0000000..8c315a2 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg2_link.STL new file mode 100644 index 0000000..4167159 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_leg2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_shoulder_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_shoulder_link.STL new file mode 100644 index 0000000..8028fd5 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_shoulder_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel1_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel1_link.STL new file mode 100644 index 0000000..ea103d7 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel1_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel2_link.STL b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel2_link.STL new file mode 100644 index 0000000..742fe00 Binary files /dev/null and b/HiveCoreR0/src/hive_core_r0/urdf/hiveBot1/meshes/right_wheel2_link.STL differ diff --git a/HiveCoreR0/src/hive_core_r0/world/bot0.world b/HiveCoreR0/src/hive_core_r0/world/bot0.world new file mode 100644 index 0000000..1c21c77 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/bot0.world @@ -0,0 +1,324 @@ + + + + 1 + 0 0 10 0 -0 0 + 0.8 0.8 0.8 1 + 0.2 0.2 0.2 1 + + 1000 + 0.9 + 0.01 + 0.001 + + -0.5 0.1 -0.9 + + 0 + 0 + 0 + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + + 100 + 50 + + + + + + + + + + + 10 + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 1 + + + 0 0 1 0 -0 0 + + + 1.5 0.8 0.03 + + + + + + 0.6 + 0.6 + + + + + + + + + + + 10 + + + 0 0 1 0 -0 0 + + + 1.5 0.8 0.03 + + + + + + + + 0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + 0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + 0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + 0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + -0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + -0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + -0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + -0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + 0 + 0 + 0 + + -0.772768 -1.3242 0 0 -0 0 + + + 83 658000000 + 83 738917407 + 1753783232 542949961 + 83658 + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -0.772768 -1.3242 0 0 -0 0 + 1 1 1 + + -0.772768 -1.3242 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 10 0 -0 0 + + + + + 4.75138 -5.25474 1.98471 0 0.275643 2.35619 + orbit + perspective + + + + diff --git a/HiveCoreR0/src/hive_core_r0/world/custom_room.world b/HiveCoreR0/src/hive_core_r0/world/custom_room.world new file mode 100644 index 0000000..1a73ff2 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/custom_room.world @@ -0,0 +1,2745 @@ + + + + 1 + 0 0 10 0 -0 0 + 0.8 0.8 0.8 1 + 0.2 0.2 0.2 1 + + 1000 + 0.9 + 0.01 + 0.001 + + -0.5 0.1 -0.9 + + 0 + 0 + 0 + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + + 100 + 50 + + + + + + + + + + + 10 + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 1435 337000000 + 1463 259419335 + 1684421669 225276651 + 1435337 + + 7.91236 4.68506 0 0 -0 0 + 1 1 1 + + 7.91236 4.68506 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -4.31975 4.20897 0 0 -0 0 + 1 1 1 + + -4.31975 4.20897 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -5.63889 4.25649 0 0 -0 0 + 1 1 1 + + -5.63889 4.25649 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -0.201253 -3.92041 0 0 -0 0 + 1 1 1 + + -0.201253 -3.92041 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -0.211824 -5.1227 0 0 -0 0 + 1 1 1 + + -0.211824 -5.1227 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -8.8359 -3.13197 0 0 -0 0 + 1 1 1 + + -8.8359 -3.13197 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -7.80202 -3.07286 0 0 -0 0 + 1 1 1 + + -7.80202 -3.07286 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -4.89593 2.8545 0 0 -0 0 + 1 1 1 + + -4.89593 2.8545 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 3.54156 1.36869 0 0 -0 0 + 1 1 1 + + 3.54156 1.36869 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 4.46016 1.36814 0 0 -0 0 + 1 1 1 + + 4.46016 1.36814 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -0.972666 -0.903877 0 0 -0 0 + 1 1 1 + + -0.958745 4.60567 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + 8.46625 -0.944332 0 0 0 -1.5708 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -0.958745 -6.49434 0 0 -0 3.14159 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -10.3837 -0.944332 0 0 -0 1.5708 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -2.09036 2.38658 0 0 0 -1.5708 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -5.39036 0.086579 0 0 -0 3.14159 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -0.580882 -4.77187 0 0 -0 1.5708 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + 3.09411 -3.14872 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -7.36159 -2.71357 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + -4.31159 -4.01357 0 0 0 -1.5708 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -0.958121 2.77839 0.5 0 -0 0 + 1 1 1 + + -0.958121 2.77839 0.5 0 -0 0 + 0 0 0 0 -0 0 + -0.004709 -9.78112 9.78158 0.712677 -0.009414 -4.3e-05 + -0.004709 -9.78112 9.78158 0 -0 0 + + + + -0.961048 0.717233 0.499993 -3e-06 -4e-06 -0 + 1 1 1 + + -0.961048 0.717233 0.499993 -3e-06 -4e-06 -0 + 0 0 0 0 -0 0 + 0 0 -9.8 0 -0 0 + 0 0 -9.8 0 -0 0 + + + + 0 0 10 0 -0 0 + + + + -0.972666 -0.903877 0 0 -0 0 + + + + + 19 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 19 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.013921 5.50955 0 0 -0 0 + 0 + 0 + 0 + + + + + + 11.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 11.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 9.43892 -0.040455 0 0 -0 -1.5708 + 0 + 0 + 0 + + + + + + 19 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 19 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.013921 -5.59046 0 0 -0 3.14159 + 0 + 0 + 0 + + + + + + 11.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 11.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -9.41108 -0.040455 0 0 -0 1.5708 + 0 + 0 + 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -1.11769 3.29046 0 0 -0 -1.5708 + 0 + 0 + 0 + + + + + + 6.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 6.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -4.41769 0.990456 0 0 -0 3.14159 + 0 + 0 + 0 + + + + + + 3.47722 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 3.47722 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.391784 -3.86799 0 0 -0 1.5708 + 0 + 0 + 0 + + + + + + 7.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 7.5 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 4.06678 -2.24484 0 0 -0 0 + 0 + 0 + 0 + + + + + + 6.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 6.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -6.38892 -1.80969 0 0 -0 0 + 0 + 0 + 0 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + 10 + + + + + + + + + + + + + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -3.33892 -3.10969 0 0 -0 -1.5708 + 0 + 0 + 0 + + 1 + + + 1 + + + 1 + + + 0 0.005 0.6 0 -0 0 + + + 0.9 0.01 1.2 + + + 10 + + + + + + + + + + + + + + + 0 0.005 0.6 0 -0 0 + + + 0.9 0.01 1.2 + + + + + + + + 0.45 -0.195 0.6 0 -0 0 + + + 0.02 0.4 1.2 + + + 10 + + + + + + + + + + + + + + + 0.45 -0.195 0.6 0 -0 0 + + + 0.02 0.4 1.2 + + + + + + + + -0.45 -0.195 0.6 0 -0 0 + + + 0.02 0.4 1.2 + + + 10 + + + + + + + + + + + + + + + -0.45 -0.195 0.6 0 -0 0 + + + 0.02 0.4 1.2 + + + + + + + + 0 -0.195 0.03 0 -0 0 + + + 0.88 0.4 0.06 + + + 10 + + + + + + + + + + + + + + + 0 -0.195 0.03 0 -0 0 + + + 0.88 0.4 0.06 + + + + + + + + 0 -0.195 1.19 0 -0 0 + + + 0.88 0.4 0.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.195 1.19 0 -0 0 + + + 0.88 0.4 0.02 + + + + + + + + 0 -0.195 0.43 0 -0 0 + + + 0.88 0.4 0.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.195 0.43 0 -0 0 + + + 0.88 0.4 0.02 + + + + + + + + 0 -0.195 0.8 0 -0 0 + + + 0.88 0.4 0.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.195 0.8 0 -0 0 + + + 0.88 0.4 0.02 + + + + + + + 0 + 0 + 0 + + 7.91236 4.68506 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -4.31975 4.20897 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -5.63889 4.25649 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -0.201253 -3.92041 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -0.211824 -5.1227 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -8.8359 -3.13197 0 0 -0 0 + + + 1 + + + 0 0 -1 0 -0 0 + + 2.05 + 0 + 0 + 2.05 + 0 + 2.05 + + 25 + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + 10 + + + + + + + + + + + + + + + 0.235 0 0.51 0 -0 0 + + + 0.02 0.45 1.02 + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.51 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + 10 + + + + + + + + + + + + + + + 0 -0.235 0.51 0 -0 0 + + + 0.45 0.02 1.02 + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 1.01 0 -0 0 + + + 0.45 0.45 0.02 + + + + + + + 0 + 0 + 0 + + -7.80202 -3.07286 0 0 -0 0 + + + 1 + + + 0 0 0.755 0 -0 0 + + + 0.913 0.913 0.04 + + + 10 + + + + + + + + + + + + + + + 0 0 0.37 0 -0 0 + + + 0.042 0.042 0.74 + + + 10 + + + + + + + + + + + + + + + 0 0 0.02 0 -0 0 + + + 0.56 0.56 0.04 + + + 10 + + + + + + + + + + + + + + + + + model://cafe_table/meshes/cafe_table.dae + + + + 0 + 0 + 0 + + -4.89593 2.8545 0 0 -0 0 + + + 1 + + + 0 0 0.755 0 -0 0 + + + 0.913 0.913 0.04 + + + 10 + + + + + + + + + + + + + + + 0 0 0.37 0 -0 0 + + + 0.042 0.042 0.74 + + + 10 + + + + + + + + + + + + + + + 0 0 0.02 0 -0 0 + + + 0.56 0.56 0.04 + + + 10 + + + + + + + + + + + + + + + + + model://cafe_table/meshes/cafe_table.dae + + + + 0 + 0 + 0 + + 3.54156 1.36869 0 0 -0 0 + + + 1 + + + 0 0 0.755 0 -0 0 + + + 0.913 0.913 0.04 + + + 10 + + + + + + + + + + + + + + + 0 0 0.37 0 -0 0 + + + 0.042 0.042 0.74 + + + 10 + + + + + + + + + + + + + + + 0 0 0.02 0 -0 0 + + + 0.56 0.56 0.04 + + + 10 + + + + + + + + + + + + + + + + + model://cafe_table/meshes/cafe_table.dae + + + + 0 + 0 + 0 + + 4.46016 1.36814 0 0 -0 0 + + + -0.961046 0.717231 0.5 0 -0 0 + + + 1 + + 0.145833 + 0 + 0 + 0.145833 + 0 + 0.125 + + 0 0 0 0 -0 0 + + + + + 0.5 + 1 + + + 10 + + + + + + + + + + + + + + + + + 0.5 + 1 + + + + + + + 0 + 0 + 0 + + + + -0.958121 2.77839 0.5 0 -0 0 + + + 1 + + 0.166667 + 0 + 0 + 0.166667 + 0 + 0.166667 + + 0 0 0 0 -0 0 + + + + + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + 1 1 1 + + + + + + + 0 + 0 + 0 + + + + + -0.170626 -11.744 24.2897 0 1.1458 1.5962 + orbit + perspective + + + + diff --git a/HiveCoreR0/src/hive_core_r0/world/empty.world b/HiveCoreR0/src/hive_core_r0/world/empty.world new file mode 100644 index 0000000..4e6a8aa --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/empty.world @@ -0,0 +1,116 @@ + + + + 1 + 0 0 10 0 -0 0 + 0.8 0.8 0.8 1 + 0.2 0.2 0.2 1 + + 1000 + 0.9 + 0.01 + 0.001 + + -0.5 0.1 -0.9 + + 0 + 0 + 0 + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + + 1e6 + 5e4 + 1000.0 + 1000.0 + + + + 0.0 + + + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 94 268000000 + 94 323810591 + 1753965160 659575744 + 94268 + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 10 0 -0 0 + + + + + 5 -5 2 0 0.275643 2.35619 + orbit + perspective + + + + diff --git a/HiveCoreR0/src/hive_core_r0/world/room/model.config b/HiveCoreR0/src/hive_core_r0/world/room/model.config new file mode 100644 index 0000000..6222143 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/room/model.config @@ -0,0 +1,11 @@ + + + room + 1.0 + model.sdf + + + + + + diff --git a/HiveCoreR0/src/hive_core_r0/world/room/model.sdf b/HiveCoreR0/src/hive_core_r0/world/room/model.sdf new file mode 100644 index 0000000..d499393 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/room/model.sdf @@ -0,0 +1,297 @@ + + + + -0.972666 -0.903877 0 0 -0 0 + + + + + 19 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 19 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.013921 5.50955 0 0 -0 0 + + + + + + 11.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 11.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 9.43892 -0.040455 0 0 -0 -1.5708 + + + + + + 19 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 19 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.013921 -5.59046 0 0 -0 3.14159 + + + + + + 11.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 11.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -9.41108 -0.040455 0 0 -0 1.5708 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -1.11769 3.29046 0 0 -0 -1.5708 + + + + + + 6.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 6.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -4.41769 0.990456 0 0 -0 3.14159 + + + + + + 3.47722 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 3.47722 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 0.391784 -3.86799 0 0 -0 1.5708 + + + + + + 7.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.5 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + 4.06678 -2.24484 0 0 -0 0 + + + + + + 6.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 6.25 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -6.38892 -1.80969 0 0 -0 0 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 0 + + + -3.33892 -3.10969 0 0 -0 -1.5708 + + 1 + + diff --git a/HiveCoreR0/src/hive_core_r0/world/table.world b/HiveCoreR0/src/hive_core_r0/world/table.world new file mode 100644 index 0000000..0c21f92 --- /dev/null +++ b/HiveCoreR0/src/hive_core_r0/world/table.world @@ -0,0 +1,321 @@ + + + + 1 + 0 0 10 0 -0 0 + 0.8 0.8 0.8 1 + 0.2 0.2 0.2 1 + + 1000 + 0.9 + 0.01 + 0.001 + + -0.5 0.1 -0.9 + + 0 + 0 + 0 + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + + 1e6 + 5e4 + 10.0 + 10.0 + + + + 0.0 + + + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 1 + + + 0 0 1 0 -0 0 + + + 1.5 0.8 0.03 + + + + + + 0.6 + 0.6 + + + + + + + + + + + 10 + + + 0 0 1 0 -0 0 + + + 1.5 0.8 0.03 + + + + + + + + 0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + 0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + 0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + 0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + -0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + -0.68 -0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + + -0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + 10 + + + + + + + + + + + + + + + -0.68 0.38 0.5 0 -0 0 + + + 0.02 + 1 + + + + + + + 0 + 0 + 0 + + 0.726316 -1.21623 0 0 -0 0 + + + 56 645000000 + 56 704774179 + 1753436842 65734558 + 56645 + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0.726316 -1.21623 0 0 -0 0 + 1 1 1 + + 0.726316 -1.21623 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 10 0 -0 0 + + + + + 4.85069 0.30326 2.30729 0 0.443643 -2.92699 + orbit + perspective + + + + diff --git a/HiveCoreR2/build/.built_by b/HiveCoreR2/build/.built_by new file mode 100644 index 0000000..06e74ac --- /dev/null +++ b/HiveCoreR2/build/.built_by @@ -0,0 +1 @@ +colcon diff --git a/HiveCoreR2/build/COLCON_IGNORE b/HiveCoreR2/build/COLCON_IGNORE new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/query/client-colcon-cmake/codemodel-v2 b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/query/client-colcon-cmake/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/codemodel-v2-d8ef4385edeb776893cb.json b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/codemodel-v2-d8ef4385edeb776893cb.json new file mode 100644 index 0000000..fd373e6 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/codemodel-v2-d8ef4385edeb776893cb.json @@ -0,0 +1,70 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-33ecad7c80cdfc3dc696.json", + "minimumCMakeVersion" : + { + "string" : "3.12" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1 + ] + } + ], + "name" : "", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "hive_core_r2", + "targetIndexes" : + [ + 0, + 1 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "hive_core_r2_uninstall::@6890427a1f51a3e7e1df", + "jsonFile" : "target-hive_core_r2_uninstall-099a1726eac00144d130.json", + "name" : "hive_core_r2_uninstall", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "uninstall::@6890427a1f51a3e7e1df", + "jsonFile" : "target-uninstall-19a8b676b963d73d1133.json", + "name" : "uninstall", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2", + "source" : "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" + }, + "version" : + { + "major" : 2, + "minor" : 8 + } +} diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/directory-.-33ecad7c80cdfc3dc696.json b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/directory-.-33ecad7c80cdfc3dc696.json new file mode 100644 index 0000000..84bb55b --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/directory-.-33ecad7c80cdfc3dc696.json @@ -0,0 +1,385 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "ament_index_register_resource", + "ament_cmake_environment_generate_package_run_dependencies_marker", + "include", + "ament_execute_extensions", + "ament_package", + "ament_cmake_environment_generate_parent_prefix_path_marker", + "ament_environment_hooks", + "ament_generate_package_environment", + "ament_index_register_package", + "_ament_package" + ], + "files" : + [ + "CMakeLists.txt", + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_register_resource.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/environment/ament_cmake_environment_package_hook.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_environment_hooks.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_cmake_environment_hooks_package_hook.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_generate_package_environment.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_register_package.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_cmake_index_package_hook.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 27, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 32, + "parent" : 0 + }, + { + "command" : 4, + "file" : 4, + "line" : 66, + "parent" : 2 + }, + { + "command" : 3, + "file" : 3, + "line" : 48, + "parent" : 3 + }, + { + "file" : 2, + "parent" : 4 + }, + { + "command" : 2, + "file" : 2, + "line" : 47, + "parent" : 5 + }, + { + "command" : 1, + "file" : 2, + "line" : 29, + "parent" : 6 + }, + { + "command" : 0, + "file" : 1, + "line" : 105, + "parent" : 7 + }, + { + "command" : 6, + "file" : 2, + "line" : 48, + "parent" : 5 + }, + { + "command" : 1, + "file" : 2, + "line" : 43, + "parent" : 9 + }, + { + "command" : 0, + "file" : 1, + "line" : 105, + "parent" : 10 + }, + { + "command" : 3, + "file" : 3, + "line" : 48, + "parent" : 3 + }, + { + "file" : 6, + "parent" : 12 + }, + { + "command" : 7, + "file" : 6, + "line" : 20, + "parent" : 13 + }, + { + "command" : 0, + "file" : 5, + "line" : 70, + "parent" : 14 + }, + { + "command" : 0, + "file" : 5, + "line" : 87, + "parent" : 14 + }, + { + "command" : 0, + "file" : 5, + "line" : 70, + "parent" : 14 + }, + { + "command" : 0, + "file" : 5, + "line" : 87, + "parent" : 14 + }, + { + "command" : 8, + "file" : 6, + "line" : 26, + "parent" : 13 + }, + { + "command" : 0, + "file" : 7, + "line" : 91, + "parent" : 19 + }, + { + "command" : 0, + "file" : 7, + "line" : 91, + "parent" : 19 + }, + { + "command" : 0, + "file" : 7, + "line" : 91, + "parent" : 19 + }, + { + "command" : 0, + "file" : 7, + "line" : 107, + "parent" : 19 + }, + { + "command" : 0, + "file" : 7, + "line" : 119, + "parent" : 19 + }, + { + "command" : 3, + "file" : 3, + "line" : 48, + "parent" : 3 + }, + { + "file" : 9, + "parent" : 25 + }, + { + "command" : 9, + "file" : 9, + "line" : 16, + "parent" : 26 + }, + { + "command" : 1, + "file" : 8, + "line" : 29, + "parent" : 27 + }, + { + "command" : 0, + "file" : 1, + "line" : 105, + "parent" : 28 + }, + { + "command" : 10, + "file" : 4, + "line" : 68, + "parent" : 2 + }, + { + "command" : 0, + "file" : 4, + "line" : 150, + "parent" : 30 + }, + { + "command" : 0, + "file" : 4, + "line" : 157, + "parent" : 30 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "launch", + "urdf", + "config" + ], + "type" : "directory" + }, + { + "backtrace" : 8, + "component" : "Unspecified", + "destination" : "share/ament_index/resource_index/package_run_dependencies", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2" + ], + "type" : "file" + }, + { + "backtrace" : 11, + "component" : "Unspecified", + "destination" : "share/ament_index/resource_index/parent_prefix_path", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2" + ], + "type" : "file" + }, + { + "backtrace" : 15, + "component" : "Unspecified", + "destination" : "share/hive_core_r2/environment", + "paths" : + [ + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh" + ], + "type" : "file" + }, + { + "backtrace" : 16, + "component" : "Unspecified", + "destination" : "share/hive_core_r2/environment", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/ament_prefix_path.dsv" + ], + "type" : "file" + }, + { + "backtrace" : 17, + "component" : "Unspecified", + "destination" : "share/hive_core_r2/environment", + "paths" : + [ + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh" + ], + "type" : "file" + }, + { + "backtrace" : 18, + "component" : "Unspecified", + "destination" : "share/hive_core_r2/environment", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/path.dsv" + ], + "type" : "file" + }, + { + "backtrace" : 20, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.bash" + ], + "type" : "file" + }, + { + "backtrace" : 21, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.sh" + ], + "type" : "file" + }, + { + "backtrace" : 22, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.zsh" + ], + "type" : "file" + }, + { + "backtrace" : 23, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.dsv" + ], + "type" : "file" + }, + { + "backtrace" : 24, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/package.dsv" + ], + "type" : "file" + }, + { + "backtrace" : 29, + "component" : "Unspecified", + "destination" : "share/ament_index/resource_index/packages", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/packages/hive_core_r2" + ], + "type" : "file" + }, + { + "backtrace" : 31, + "component" : "Unspecified", + "destination" : "share/hive_core_r2/cmake", + "paths" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config.cmake", + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config-version.cmake" + ], + "type" : "file" + }, + { + "backtrace" : 32, + "component" : "Unspecified", + "destination" : "share/hive_core_r2", + "paths" : + [ + "package.xml" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/index-2025-07-25T06-37-24-0875.json b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/index-2025-07-25T06-37-24-0875.json new file mode 100644 index 0000000..b553ecf --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/index-2025-07-25T06-37-24-0875.json @@ -0,0 +1,54 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Unix Makefiles" + }, + "paths" : + { + "cmake" : "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake", + "cpack" : "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cpack", + "ctest" : "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/ctest", + "root" : "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0" + }, + "version" : + { + "isDirty" : false, + "major" : 4, + "minor" : 0, + "patch" : 3, + "string" : "4.0.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-d8ef4385edeb776893cb.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 8 + } + } + ], + "reply" : + { + "client-colcon-cmake" : + { + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-d8ef4385edeb776893cb.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 8 + } + } + } + } +} diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-hive_core_r2_uninstall-099a1726eac00144d130.json b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-hive_core_r2_uninstall-099a1726eac00144d130.json new file mode 100644 index 0000000..6c0f80a --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-hive_core_r2_uninstall-099a1726eac00144d130.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 9, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "include", + "find_package" + ], + "files" : + [ + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake", + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake", + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmakeConfig.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 4 + }, + { + "command" : 2, + "file" : 4, + "line" : 9, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 1 + }, + { + "command" : 1, + "file" : 3, + "line" : 41, + "parent" : 2 + }, + { + "file" : 2, + "parent" : 3 + }, + { + "command" : 2, + "file" : 2, + "line" : 15, + "parent" : 4 + }, + { + "file" : 1, + "parent" : 5 + }, + { + "command" : 1, + "file" : 1, + "line" : 41, + "parent" : 6 + }, + { + "file" : 0, + "parent" : 7 + }, + { + "command" : 0, + "file" : 0, + "line" : 40, + "parent" : 8 + } + ] + }, + "id" : "hive_core_r2_uninstall::@6890427a1f51a3e7e1df", + "name" : "hive_core_r2_uninstall", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 9, + "isGenerated" : true, + "path" : "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-uninstall-19a8b676b963d73d1133.json b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-uninstall-19a8b676b963d73d1133.json new file mode 100644 index 0000000..0d2e883 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/.cmake/api/v1/reply/target-uninstall-19a8b676b963d73d1133.json @@ -0,0 +1,95 @@ +{ + "backtrace" : 9, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "include", + "find_package", + "add_dependencies" + ], + "files" : + [ + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake", + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake", + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake", + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmakeConfig.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 4 + }, + { + "command" : 2, + "file" : 4, + "line" : 9, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 1 + }, + { + "command" : 1, + "file" : 3, + "line" : 41, + "parent" : 2 + }, + { + "file" : 2, + "parent" : 3 + }, + { + "command" : 2, + "file" : 2, + "line" : 15, + "parent" : 4 + }, + { + "file" : 1, + "parent" : 5 + }, + { + "command" : 1, + "file" : 1, + "line" : 41, + "parent" : 6 + }, + { + "file" : 0, + "parent" : 7 + }, + { + "command" : 0, + "file" : 0, + "line" : 35, + "parent" : 8 + }, + { + "command" : 3, + "file" : 0, + "line" : 42, + "parent" : 8 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 10, + "id" : "hive_core_r2_uninstall::@6890427a1f51a3e7e1df" + } + ], + "id" : "uninstall::@6890427a1f51a3e7e1df", + "name" : "uninstall", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/HiveCoreR2/build/hive_core_r2/CMakeCache.txt b/HiveCoreR2/build/hive_core_r2/CMakeCache.txt new file mode 100644 index 0000000..62581f7 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeCache.txt @@ -0,0 +1,507 @@ +# This is the CMakeCache file. +# For build in directory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +# It was generated by CMake: /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Generate environment files in the CMAKE_INSTALL_PREFIX +AMENT_CMAKE_ENVIRONMENT_GENERATION:BOOL=OFF + +//Generate environment files in the package share folder +AMENT_CMAKE_ENVIRONMENT_PACKAGE_GENERATION:BOOL=ON + +//Generate marker file containing the parent prefix path +AMENT_CMAKE_ENVIRONMENT_PARENT_PREFIX_PATH_GENERATION:BOOL=ON + +//Replace the CMake install command with a custom implementation +// using symlinks instead of copying resources +AMENT_CMAKE_SYMLINK_INSTALL:BOOL=OFF + +//Generate an uninstall target to revert the effects of the install +// step +AMENT_CMAKE_UNINSTALL_TARGET:BOOL=ON + +//The path where test results are generated +AMENT_TEST_RESULTS_DIR:PATH=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results + +//Build the testing tree. +BUILD_TESTING:BOOL=ON + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=hive_core_r2 + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Path to a program. +Python3_EXECUTABLE:FILEPATH=/usr/bin/python3 + +//Name of the computer/site where compile is being run +SITE:STRING=hivecore-Precision-3680 + +//The directory containing a CMake configuration file for ament_cmake. +ament_cmake_DIR:PATH=/opt/ros/humble/share/ament_cmake/cmake + +//The directory containing a CMake configuration file for ament_cmake_core. +ament_cmake_core_DIR:PATH=/opt/ros/humble/share/ament_cmake_core/cmake + +//The directory containing a CMake configuration file for ament_cmake_cppcheck. +ament_cmake_cppcheck_DIR:PATH=/opt/ros/humble/share/ament_cmake_cppcheck/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_definitions. +ament_cmake_export_definitions_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_definitions/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_dependencies. +ament_cmake_export_dependencies_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_dependencies/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_include_directories. +ament_cmake_export_include_directories_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_include_directories/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_interfaces. +ament_cmake_export_interfaces_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_interfaces/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_libraries. +ament_cmake_export_libraries_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_libraries/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_link_flags. +ament_cmake_export_link_flags_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_link_flags/cmake + +//The directory containing a CMake configuration file for ament_cmake_export_targets. +ament_cmake_export_targets_DIR:PATH=/opt/ros/humble/share/ament_cmake_export_targets/cmake + +//The directory containing a CMake configuration file for ament_cmake_flake8. +ament_cmake_flake8_DIR:PATH=/opt/ros/humble/share/ament_cmake_flake8/cmake + +//The directory containing a CMake configuration file for ament_cmake_gen_version_h. +ament_cmake_gen_version_h_DIR:PATH=/opt/ros/humble/share/ament_cmake_gen_version_h/cmake + +//The directory containing a CMake configuration file for ament_cmake_include_directories. +ament_cmake_include_directories_DIR:PATH=/opt/ros/humble/share/ament_cmake_include_directories/cmake + +//The directory containing a CMake configuration file for ament_cmake_libraries. +ament_cmake_libraries_DIR:PATH=/opt/ros/humble/share/ament_cmake_libraries/cmake + +//The directory containing a CMake configuration file for ament_cmake_lint_cmake. +ament_cmake_lint_cmake_DIR:PATH=/opt/ros/humble/share/ament_cmake_lint_cmake/cmake + +//The directory containing a CMake configuration file for ament_cmake_pep257. +ament_cmake_pep257_DIR:PATH=/opt/ros/humble/share/ament_cmake_pep257/cmake + +//The directory containing a CMake configuration file for ament_cmake_python. +ament_cmake_python_DIR:PATH=/opt/ros/humble/share/ament_cmake_python/cmake + +//The directory containing a CMake configuration file for ament_cmake_target_dependencies. +ament_cmake_target_dependencies_DIR:PATH=/opt/ros/humble/share/ament_cmake_target_dependencies/cmake + +//The directory containing a CMake configuration file for ament_cmake_test. +ament_cmake_test_DIR:PATH=/opt/ros/humble/share/ament_cmake_test/cmake + +//The directory containing a CMake configuration file for ament_cmake_uncrustify. +ament_cmake_uncrustify_DIR:PATH=/opt/ros/humble/share/ament_cmake_uncrustify/cmake + +//The directory containing a CMake configuration file for ament_cmake_version. +ament_cmake_version_DIR:PATH=/opt/ros/humble/share/ament_cmake_version/cmake + +//The directory containing a CMake configuration file for ament_cmake_xmllint. +ament_cmake_xmllint_DIR:PATH=/opt/ros/humble/share/ament_cmake_xmllint/cmake + +//Path to a program. +ament_flake8_BIN:FILEPATH=/opt/ros/humble/bin/ament_flake8 + +//The directory containing a CMake configuration file for ament_lint_auto. +ament_lint_auto_DIR:PATH=/opt/ros/humble/share/ament_lint_auto/cmake + +//Path to a program. +ament_lint_cmake_BIN:FILEPATH=/opt/ros/humble/bin/ament_lint_cmake + +//The directory containing a CMake configuration file for ament_lint_common. +ament_lint_common_DIR:PATH=/opt/ros/humble/share/ament_lint_common/cmake + +//Path to a program. +ament_pep257_BIN:FILEPATH=/opt/ros/humble/bin/ament_pep257 + +//Path to a program. +ament_xmllint_BIN:FILEPATH=/opt/ros/humble/bin/ament_xmllint + +//Value Computed by CMake +hive_core_r2_BINARY_DIR:STATIC=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +//Value Computed by CMake +hive_core_r2_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +hive_core_r2_SOURCE_DIR:STATIC=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +//Path to a program. +xmllint_BIN:FILEPATH=/usr/bin/xmllint + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=0 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/usr/bin/python3][found components: Interpreter ][v3.10.12()] +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=/usr/bin/python3 +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;10;12;64;32;;cpython-310-x86_64-linux-gnu;abi3;/usr/lib/python3.10;/usr/lib/python3.10;/usr/local/lib/python3.10/dist-packages;/usr/local/lib/python3.10/dist-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=0f3e53742e142b1d9e50e4ca5b901dd8 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCCompiler.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..c324104 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.38) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..50250d2 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake @@ -0,0 +1,104 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.38) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..a469133 Binary files /dev/null and b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..15e6e3f Binary files /dev/null and b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeSystem.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeSystem.cmake new file mode 100644 index 0000000..58c805e --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-64-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.8.0-64-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.8.0-64-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..a842bb6 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,905 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/a.out b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/a.out new file mode 100755 index 0000000..c786756 Binary files /dev/null and b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/a.out differ diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..94d4310 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,920 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/a.out b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/a.out new file mode 100755 index 0000000..6f75914 Binary files /dev/null and b/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/a.out differ diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeConfigureLog.yaml b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..facde75 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,578 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Linux - 6.8.0-64-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/4.0.3/CompilerIdCXX/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r" + binary: "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r' + + Run Build Command(s): /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_60ebb/fast + /usr/bin/gmake -f CMakeFiles/cmTC_60ebb.dir/build.make CMakeFiles/cmTC_60ebb.dir/build + gmake[1]: Entering directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r' + Building C object CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -c /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_60ebb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccevrc3q.s + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: 50eaa2331df977b8016186198deb2d18 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/' + as -v --64 -o CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o /tmp/ccevrc3q.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_60ebb + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_60ebb.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_60ebb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_60ebb.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1KsTIq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_60ebb /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + collect2 version 11.4.0 + /usr/bin/ld -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1KsTIq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_60ebb /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + GNU ld (GNU Binutils for Ubuntu) 2.38 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_60ebb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_60ebb.' + /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -o cmTC_60ebb + gmake[1]: Leaving directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r'] + ignore line: [] + ignore line: [Run Build Command(s): /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_60ebb/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_60ebb.dir/build.make CMakeFiles/cmTC_60ebb.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-B9hd3r'] + ignore line: [Building C object CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -c /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_60ebb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccevrc3q.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o /tmp/ccevrc3q.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_60ebb] + ignore line: [/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_60ebb.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_60ebb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_60ebb.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1KsTIq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_60ebb /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc1KsTIq.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_60ebb] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + ignore line: [collect2 version 11.4.0] + ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1KsTIq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_60ebb /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_60ebb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:270 (cmake_determine_linker_id)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils for Ubuntu) 2.38 + - + kind: "try_compile-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw" + binary: "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw' + + Run Build Command(s): /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_27bad/fast + /usr/bin/gmake -f CMakeFiles/cmTC_27bad.dir/build.make CMakeFiles/cmTC_27bad.dir/build + gmake[1]: Entering directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw' + Building CXX object CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -c /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_27bad.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccqpHO7S.s + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/' + as -v --64 -o CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccqpHO7S.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_27bad + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27bad.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_27bad' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_27bad.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6IB9C6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_27bad /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + collect2 version 11.4.0 + /usr/bin/ld -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6IB9C6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_27bad /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + GNU ld (GNU Binutils for Ubuntu) 2.38 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_27bad' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_27bad.' + /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_27bad + gmake[1]: Leaving directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw'] + ignore line: [] + ignore line: [Run Build Command(s): /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_27bad/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_27bad.dir/build.make CMakeFiles/cmTC_27bad.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeScratch/TryCompile-kXWuzw'] + ignore line: [Building CXX object CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -c /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_27bad.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccqpHO7S.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccqpHO7S.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_27bad] + ignore line: [/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27bad.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_27bad' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_27bad.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6IB9C6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_27bad /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc6IB9C6.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_27bad] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + ignore line: [collect2 version 11.4.0] + ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6IB9C6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_27bad /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. -v CMakeFiles/cmTC_27bad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + linker tool for 'CXX': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:270 (cmake_determine_linker_id)" + - "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the CXX compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils for Ubuntu) 2.38 +... diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeDirectoryInformation.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..9973fbf --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeRuleHashes.txt b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..df0c5e6 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,2 @@ +# Hashes of file build rules. +29eb1ceb7cc78ac0ba05b8fe65e702bb CMakeFiles/hive_core_r2_uninstall diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/InstallScripts.json b/HiveCoreR2/build/hive_core_r2/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..9d72c44 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..e9b3564 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile.cmake @@ -0,0 +1,318 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompiler.cmake.in" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCCompilerABI.c" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompiler.cmake.in" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCXXInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCommonLanguageInclude.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeCompilerIdDetection.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineCompilerSupport.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeFindBinUtils.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeGenericSystem.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeInitializeConfigs.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeLanguageInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeParseImplicitLinkInfo.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeParseLibraryArchitecture.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeSystem.cmake.in" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeSystemSpecificInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeSystemSpecificInitialize.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeTestCompilerCommon.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/CMakeUnixFindMake.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU-C.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU-CXX.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU-FindBinUtils.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/GNU.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/TI-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/TIClang-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/DartConfiguration.tcl.in" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/FindPackageMessage.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/FindPython/Support.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/FindPython3.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeInspectCLinker.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/CMakeInspectCXXLinker.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Internal/FeatureTesting.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Linker/GNU-C.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Linker/GNU-CXX.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Linker/GNU.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linker/GNU.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linker/Linux-GNU-C.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linker/Linux-GNU-CXX.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linker/Linux-GNU.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux-Determine-CXX.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux-GNU-C.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux-GNU-CXX.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux-GNU.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux-Initialize.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/Linux.cmake" + "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/share/cmake-4.0/Modules/Platform/UnixPaths.cmake" + "CMakeFiles/4.0.3/CMakeCCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.0.3/CMakeSystem.cmake" + "ament_cmake_core/package.cmake" + "ament_cmake_package_templates/templates.cmake" + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt" + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/package.xml" + "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.bash.in" + "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.sh.in" + "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.zsh.in" + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmakeConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmakeConfig.cmake" + "/opt/ros/humble/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_core-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_coreConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_environment-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_environment_hooks-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_index-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_package_templates-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_symlink_install-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/all.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package_xml.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_register_extension.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/assert_file_exists.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/get_executable_path.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/list_append_unique.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/normalize_path.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/package_xml_2_cmake.py" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/python.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/stamp.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/string_ends_with.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/templates/nameConfig-version.cmake.in" + "/opt/ros/humble/share/ament_cmake_core/cmake/core/templates/nameConfig.cmake.in" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment/ament_cmake_environment_package_hook.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment/ament_generate_environment.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_cmake_environment_hooks_package_hook.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_environment_hooks.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/ament_generate_package_environment.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh" + "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_cmake_index_package_hook.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_get_prefix_path.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_get_resource.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_get_resources.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_has_resource.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_register_package.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/index/ament_index_register_resource.cmake" + "/opt/ros/humble/share/ament_cmake_core/cmake/package_templates/templates_2_cmake.py" + "/opt/ros/humble/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in" + "/opt/ros/humble/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target_append_uninstall_code.cmake" + "/opt/ros/humble/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck-extras.cmake" + "/opt/ros/humble/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig.cmake" + "/opt/ros/humble/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_cppcheck/cmake/ament_cppcheck.cmake" + "/opt/ros/humble/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitions-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_definitions/cmake/ament_export_definitions.cmake" + "/opt/ros/humble/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_dependencies/cmake/ament_export_dependencies.cmake" + "/opt/ros/humble/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_include_directories/cmake/ament_export_include_directories.cmake" + "/opt/ros/humble/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfaces-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_interfaces/cmake/ament_export_interfaces.cmake" + "/opt/ros/humble/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_libraries/cmake/ament_export_libraries.cmake" + "/opt/ros/humble/share/ament_cmake_export_libraries/cmake/ament_export_library_names.cmake" + "/opt/ros/humble/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flags-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_link_flags/cmake/ament_export_link_flags.cmake" + "/opt/ros/humble/share/ament_cmake_export_targets/cmake/ament_cmake_export_targets-extras.cmake" + "/opt/ros/humble/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig.cmake" + "/opt/ros/humble/share/ament_cmake_export_targets/cmake/ament_export_targets.cmake" + "/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8-extras.cmake" + "/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config-version.cmake" + "/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config.cmake" + "/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_flake8.cmake" + "/opt/ros/humble/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_h-extras.cmake" + "/opt/ros/humble/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_h.cmake" + "/opt/ros/humble/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_hConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_hConfig.cmake" + "/opt/ros/humble/share/ament_cmake_gen_version_h/cmake/ament_generate_version_header.cmake" + "/opt/ros/humble/share/ament_cmake_include_directories/cmake/ament_cmake_include_directories-extras.cmake" + "/opt/ros/humble/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_include_directories/cmake/ament_include_directories_order.cmake" + "/opt/ros/humble/share/ament_cmake_libraries/cmake/ament_cmake_libraries-extras.cmake" + "/opt/ros/humble/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_libraries/cmake/ament_libraries_deduplicate.cmake" + "/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake-extras.cmake" + "/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig.cmake" + "/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake" + "/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257-extras.cmake" + "/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config-version.cmake" + "/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config.cmake" + "/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_pep257.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_cmake_python-extras.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_cmake_pythonConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_cmake_pythonConfig.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_get_python_install_dir.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_python_install_module.cmake" + "/opt/ros/humble/share/ament_cmake_python/cmake/ament_python_install_package.cmake" + "/opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependencies-extras.cmake" + "/opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig.cmake" + "/opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_get_recursive_properties.cmake" + "/opt/ros/humble/share/ament_cmake_target_dependencies/cmake/ament_target_dependencies.cmake" + "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test.cmake" + "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test_label.cmake" + "/opt/ros/humble/share/ament_cmake_test/cmake/ament_cmake_test-extras.cmake" + "/opt/ros/humble/share/ament_cmake_test/cmake/ament_cmake_testConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_test/cmake/ament_cmake_testConfig.cmake" + "/opt/ros/humble/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify-extras.cmake" + "/opt/ros/humble/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig.cmake" + "/opt/ros/humble/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_uncrustify/cmake/ament_uncrustify.cmake" + "/opt/ros/humble/share/ament_cmake_version/cmake/ament_cmake_version-extras.cmake" + "/opt/ros/humble/share/ament_cmake_version/cmake/ament_cmake_versionConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_version/cmake/ament_cmake_versionConfig.cmake" + "/opt/ros/humble/share/ament_cmake_version/cmake/ament_export_development_version_if_higher_than_manifest.cmake" + "/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint-extras.cmake" + "/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig-version.cmake" + "/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig.cmake" + "/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake" + "/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake" + "/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto-extras.cmake" + "/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_autoConfig-version.cmake" + "/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_autoConfig.cmake" + "/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_find_test_dependencies.cmake" + "/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake" + "/opt/ros/humble/share/ament_lint_common/cmake/ament_cmake_export_dependencies-extras.cmake" + "/opt/ros/humble/share/ament_lint_common/cmake/ament_lint_commonConfig-version.cmake" + "/opt/ros/humble/share/ament_lint_common/cmake/ament_lint_commonConfig.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/4.0.3/CMakeSystem.cmake" + "CMakeFiles/4.0.3/CMakeCCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" + "ament_cmake_core/stamps/templates_2_cmake.py.stamp" + "ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake" + "CTestConfiguration.ini" + "ament_cmake_core/stamps/package.xml.stamp" + "ament_cmake_core/stamps/package_xml_2_cmake.py.stamp" + "ament_cmake_core/stamps/ament_prefix_path.sh.stamp" + "ament_cmake_core/stamps/path.sh.stamp" + "ament_cmake_environment_hooks/local_setup.bash" + "ament_cmake_environment_hooks/local_setup.sh" + "ament_cmake_environment_hooks/local_setup.zsh" + "ament_cmake_core/stamps/nameConfig.cmake.in.stamp" + "ament_cmake_core/hive_core_r2Config.cmake" + "ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp" + "ament_cmake_core/hive_core_r2Config-version.cmake" + "ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2" + "ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2" + "ament_cmake_index/share/ament_index/resource_index/packages/hive_core_r2" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/uninstall.dir/DependInfo.cmake" + "CMakeFiles/hive_core_r2_uninstall.dir/DependInfo.cmake" + ) diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile2 b/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile2 new file mode 100644 index 0000000..71e484c --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/Makefile2 @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake + +# The command to remove a file. +RM = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: +.PHONY : all + +# The main recursive "codegen" target. +codegen: +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/uninstall.dir/clean +clean: CMakeFiles/hive_core_r2_uninstall.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/uninstall.dir + +# All Build rule for target. +CMakeFiles/uninstall.dir/all: CMakeFiles/hive_core_r2_uninstall.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles --progress-num= "Built target uninstall" +.PHONY : CMakeFiles/uninstall.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/uninstall.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/uninstall.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles 0 +.PHONY : CMakeFiles/uninstall.dir/rule + +# Convenience name for target. +uninstall: CMakeFiles/uninstall.dir/rule +.PHONY : uninstall + +# codegen rule for target. +CMakeFiles/uninstall.dir/codegen: CMakeFiles/hive_core_r2_uninstall.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles --progress-num= "Finished codegen for target uninstall" +.PHONY : CMakeFiles/uninstall.dir/codegen + +# clean rule for target. +CMakeFiles/uninstall.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/clean +.PHONY : CMakeFiles/uninstall.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/hive_core_r2_uninstall.dir + +# All Build rule for target. +CMakeFiles/hive_core_r2_uninstall.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/hive_core_r2_uninstall.dir/build.make CMakeFiles/hive_core_r2_uninstall.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/hive_core_r2_uninstall.dir/build.make CMakeFiles/hive_core_r2_uninstall.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles --progress-num= "Built target hive_core_r2_uninstall" +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/hive_core_r2_uninstall.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/hive_core_r2_uninstall.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles 0 +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/rule + +# Convenience name for target. +hive_core_r2_uninstall: CMakeFiles/hive_core_r2_uninstall.dir/rule +.PHONY : hive_core_r2_uninstall + +# codegen rule for target. +CMakeFiles/hive_core_r2_uninstall.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/hive_core_r2_uninstall.dir/build.make CMakeFiles/hive_core_r2_uninstall.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles --progress-num= "Finished codegen for target hive_core_r2_uninstall" +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/codegen + +# clean rule for target. +CMakeFiles/hive_core_r2_uninstall.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/hive_core_r2_uninstall.dir/build.make CMakeFiles/hive_core_r2_uninstall.dir/clean +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/TargetDirectories.txt b/HiveCoreR2/build/hive_core_r2/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..22f1e26 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,9 @@ +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/test.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/edit_cache.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/rebuild_cache.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/list_install_components.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/install.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/install/local.dir +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/install/strip.dir diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/cmake.check_cache b/HiveCoreR2/build/hive_core_r2/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/DependInfo.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/build.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/build.make new file mode 100644 index 0000000..04bd5db --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake + +# The command to remove a file. +RM = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +# Utility rule file for hive_core_r2_uninstall. + +# Include any custom commands dependencies for this target. +include CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/hive_core_r2_uninstall.dir/progress.make + +CMakeFiles/hive_core_r2_uninstall: + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -P /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake + +CMakeFiles/hive_core_r2_uninstall.dir/codegen: +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/codegen + +hive_core_r2_uninstall: CMakeFiles/hive_core_r2_uninstall +hive_core_r2_uninstall: CMakeFiles/hive_core_r2_uninstall.dir/build.make +.PHONY : hive_core_r2_uninstall + +# Rule to build all files generated by this target. +CMakeFiles/hive_core_r2_uninstall.dir/build: hive_core_r2_uninstall +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/build + +CMakeFiles/hive_core_r2_uninstall.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/hive_core_r2_uninstall.dir/cmake_clean.cmake +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/clean + +CMakeFiles/hive_core_r2_uninstall.dir/depend: + cd /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/hive_core_r2_uninstall.dir/depend + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/cmake_clean.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/cmake_clean.cmake new file mode 100644 index 0000000..feb5f38 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/hive_core_r2_uninstall" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/hive_core_r2_uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.make new file mode 100644 index 0000000..bacd003 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for hive_core_r2_uninstall. +# This may be replaced when dependencies are built. diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.ts b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.ts new file mode 100644 index 0000000..8afcef3 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for hive_core_r2_uninstall. diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/progress.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/hive_core_r2_uninstall.dir/progress.make @@ -0,0 +1 @@ + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/progress.marks b/HiveCoreR2/build/hive_core_r2/CMakeFiles/progress.marks new file mode 100644 index 0000000..573541a --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/DependInfo.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/build.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/build.make new file mode 100644 index 0000000..17e55eb --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake + +# The command to remove a file. +RM = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +# Utility rule file for uninstall. + +# Include any custom commands dependencies for this target. +include CMakeFiles/uninstall.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/uninstall.dir/progress.make + +CMakeFiles/uninstall.dir/codegen: +.PHONY : CMakeFiles/uninstall.dir/codegen + +uninstall: CMakeFiles/uninstall.dir/build.make +.PHONY : uninstall + +# Rule to build all files generated by this target. +CMakeFiles/uninstall.dir/build: uninstall +.PHONY : CMakeFiles/uninstall.dir/build + +CMakeFiles/uninstall.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/uninstall.dir/cmake_clean.cmake +.PHONY : CMakeFiles/uninstall.dir/clean + +CMakeFiles/uninstall.dir/depend: + cd /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/uninstall.dir/depend + diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/cmake_clean.cmake b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/cmake_clean.cmake new file mode 100644 index 0000000..9960e98 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.make new file mode 100644 index 0000000..2d74447 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for uninstall. +# This may be replaced when dependencies are built. diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.ts b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.ts new file mode 100644 index 0000000..ef27dcc --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for uninstall. diff --git a/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/progress.make b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CMakeFiles/uninstall.dir/progress.make @@ -0,0 +1 @@ + diff --git a/HiveCoreR2/build/hive_core_r2/CTestConfiguration.ini b/HiveCoreR2/build/hive_core_r2/CTestConfiguration.ini new file mode 100644 index 0000000..806338c --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CTestConfiguration.ini @@ -0,0 +1,109 @@ +# This file is configured by CMake automatically as DartConfiguration.tcl +# If you choose not to use CMake, this file may be hand configured, by +# filling in the required variables. + + +# Configuration directories and files +SourceDirectory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 +BuildDirectory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +# Where to place the cost data store +CostDataFile: + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: hivecore-Precision-3680 + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: + +# Subprojects +LabelsForSubprojects: + +# Submission information +SubmitURL: +SubmitInactivityTimeout: + +# Dashboard start time +NightlyStartTime: + +# Commands for the build/test/submit cycle +ConfigureCommand: "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" +MakeCommand: +DefaultCTestConfigurationType: + +# version control +UpdateVersionOnly: + +# CVS options +# Default is "-d -P -A" +CVSCommand: +CVSUpdateOptions: + +# Subversion options +SVNCommand: +SVNOptions: +SVNUpdateOptions: + +# Git options +GITCommand: +GITInitSubmodules: +GITUpdateOptions: +GITUpdateCustom: + +# Perforce options +P4Command: +P4Client: +P4Options: +P4UpdateOptions: +P4UpdateCustom: + +# Generic update command +UpdateCommand: +UpdateOptions: +UpdateType: + +# Compiler info +Compiler: /usr/bin/c++ +CompilerVersion: 11.4.0 + +# Dynamic analysis (MemCheck) +PurifyCommand: +ValgrindCommand: +ValgrindCommandOptions: +DrMemoryCommand: +DrMemoryCommandOptions: +CudaSanitizerCommand: +CudaSanitizerCommandOptions: +MemoryCheckType: +MemoryCheckSanitizerOptions: +MemoryCheckCommand: +MemoryCheckCommandOptions: +MemoryCheckSuppressionFile: + +# Coverage +CoverageCommand: +CoverageExtraFlags: + +# Testing options +# TimeOut is the amount of time in seconds to wait for processes +# to complete during testing. After TimeOut seconds, the +# process will be summarily terminated. +# Currently set to 25 minutes +TimeOut: + +# During parallel testing CTest will not start a new test if doing +# so would cause the system load to exceed this value. +TestLoad: + +TLSVerify: +TLSVersion: + +UseLaunchers: +CurlOptions: +# warning, if you add new options here that have to do with submit, +# you have to update cmCTestSubmitCommand.cxx + +# For CTest submissions that timeout, these options +# specify behavior for retrying the submission +CTestSubmitRetryDelay: +CTestSubmitRetryCount: diff --git a/HiveCoreR2/build/hive_core_r2/CTestCustom.cmake b/HiveCoreR2/build/hive_core_r2/CTestCustom.cmake new file mode 100644 index 0000000..14956f3 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CTestCustom.cmake @@ -0,0 +1,2 @@ +set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0) +set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0) diff --git a/HiveCoreR2/build/hive_core_r2/CTestTestfile.cmake b/HiveCoreR2/build/hive_core_r2/CTestTestfile.cmake new file mode 100644 index 0000000..695bc16 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/CTestTestfile.cmake @@ -0,0 +1,14 @@ +# CMake generated Testfile for +# Source directory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 +# Build directory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(flake8 "/usr/bin/python3" "-u" "/opt/ros/humble/share/ament_cmake_test/cmake/run_test.py" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/flake8.xunit.xml" "--package-name" "hive_core_r2" "--output-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_flake8/flake8.txt" "--command" "/opt/ros/humble/bin/ament_flake8" "--xunit-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/flake8.xunit.xml") +set_tests_properties(flake8 PROPERTIES LABELS "flake8;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" _BACKTRACE_TRIPLES "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_flake8.cmake;63;ament_add_test;/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8_lint_hook.cmake;18;ament_flake8;/opt/ros/humble/share/ament_cmake_flake8/cmake/ament_cmake_flake8_lint_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;32;ament_package;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;0;") +add_test(lint_cmake "/usr/bin/python3" "-u" "/opt/ros/humble/share/ament_cmake_test/cmake/run_test.py" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/lint_cmake.xunit.xml" "--package-name" "hive_core_r2" "--output-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_lint_cmake/lint_cmake.txt" "--command" "/opt/ros/humble/bin/ament_lint_cmake" "--xunit-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/lint_cmake.xunit.xml") +set_tests_properties(lint_cmake PROPERTIES LABELS "lint_cmake;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" _BACKTRACE_TRIPLES "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake;47;ament_add_test;/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;21;ament_lint_cmake;/opt/ros/humble/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;32;ament_package;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;0;") +add_test(pep257 "/usr/bin/python3" "-u" "/opt/ros/humble/share/ament_cmake_test/cmake/run_test.py" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/pep257.xunit.xml" "--package-name" "hive_core_r2" "--output-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_pep257/pep257.txt" "--command" "/opt/ros/humble/bin/ament_pep257" "--xunit-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/pep257.xunit.xml") +set_tests_properties(pep257 PROPERTIES LABELS "pep257;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" _BACKTRACE_TRIPLES "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_pep257.cmake;41;ament_add_test;/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257_lint_hook.cmake;18;ament_pep257;/opt/ros/humble/share/ament_cmake_pep257/cmake/ament_cmake_pep257_lint_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;32;ament_package;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;0;") +add_test(xmllint "/usr/bin/python3" "-u" "/opt/ros/humble/share/ament_cmake_test/cmake/run_test.py" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/xmllint.xunit.xml" "--package-name" "hive_core_r2" "--output-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_xmllint/xmllint.txt" "--command" "/opt/ros/humble/bin/ament_xmllint" "--xunit-file" "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/test_results/hive_core_r2/xmllint.xunit.xml") +set_tests_properties(xmllint PROPERTIES LABELS "xmllint;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2" _BACKTRACE_TRIPLES "/opt/ros/humble/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake;50;ament_add_test;/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;18;ament_xmllint;/opt/ros/humble/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/opt/ros/humble/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/opt/ros/humble/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;32;ament_package;/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/CMakeLists.txt;0;") diff --git a/HiveCoreR2/build/hive_core_r2/Makefile b/HiveCoreR2/build/hive_core_r2/Makefile new file mode 100644 index 0000000..d63b7bf --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/Makefile @@ -0,0 +1,228 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.0 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake + +# The command to remove a file. +RM = /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named uninstall + +# Build rule for target. +uninstall: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 uninstall +.PHONY : uninstall + +# fast build rule for target. +uninstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build +.PHONY : uninstall/fast + +#============================================================================= +# Target rules for targets named hive_core_r2_uninstall + +# Build rule for target. +hive_core_r2_uninstall: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 hive_core_r2_uninstall +.PHONY : hive_core_r2_uninstall + +# fast build rule for target. +hive_core_r2_uninstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/hive_core_r2_uninstall.dir/build.make CMakeFiles/hive_core_r2_uninstall.dir/build +.PHONY : hive_core_r2_uninstall/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... hive_core_r2_uninstall" + @echo "... uninstall" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config-version.cmake b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config-version.cmake new file mode 100644 index 0000000..7beb732 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config-version.cmake @@ -0,0 +1,14 @@ +# generated from ament/cmake/core/templates/nameConfig-version.cmake.in +set(PACKAGE_VERSION "0.0.0") + +set(PACKAGE_VERSION_EXACT False) +set(PACKAGE_VERSION_COMPATIBLE False) + +if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT True) + set(PACKAGE_VERSION_COMPATIBLE True) +endif() + +if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE True) +endif() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config.cmake b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config.cmake new file mode 100644 index 0000000..585c3ff --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config.cmake @@ -0,0 +1,42 @@ +# generated from ament/cmake/core/templates/nameConfig.cmake.in + +# prevent multiple inclusion +if(_hive_core_r2_CONFIG_INCLUDED) + # ensure to keep the found flag the same + if(NOT DEFINED hive_core_r2_FOUND) + # explicitly set it to FALSE, otherwise CMake will set it to TRUE + set(hive_core_r2_FOUND FALSE) + elseif(NOT hive_core_r2_FOUND) + # use separate condition to avoid uninitialized variable warning + set(hive_core_r2_FOUND FALSE) + endif() + return() +endif() +set(_hive_core_r2_CONFIG_INCLUDED TRUE) + +# output package information +if(NOT hive_core_r2_FIND_QUIETLY) + message(STATUS "Found hive_core_r2: 0.0.0 (${hive_core_r2_DIR})") +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "Package 'hive_core_r2' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + # optionally quiet the deprecation message + if(NOT ${hive_core_r2_DEPRECATED_QUIET}) + message(DEPRECATION "${_msg}") + endif() +endif() + +# flag package as ament-based to distinguish it after being find_package()-ed +set(hive_core_r2_FOUND_AMENT_PACKAGE TRUE) + +# include all config extra files +set(_extras "") +foreach(_extra ${_extras}) + include("${hive_core_r2_DIR}/${_extra}") +endforeach() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/package.cmake b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/package.cmake new file mode 100644 index 0000000..05547f9 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/package.cmake @@ -0,0 +1,14 @@ +set(_AMENT_PACKAGE_NAME "hive_core_r2") +set(hive_core_r2_VERSION "0.0.0") +set(hive_core_r2_MAINTAINER "hivecore ") +set(hive_core_r2_BUILD_DEPENDS ) +set(hive_core_r2_BUILDTOOL_DEPENDS "ament_cmake") +set(hive_core_r2_BUILD_EXPORT_DEPENDS ) +set(hive_core_r2_BUILDTOOL_EXPORT_DEPENDS ) +set(hive_core_r2_EXEC_DEPENDS ) +set(hive_core_r2_TEST_DEPENDS "ament_lint_auto" "ament_lint_common") +set(hive_core_r2_GROUP_DEPENDS ) +set(hive_core_r2_MEMBER_OF_GROUPS ) +set(hive_core_r2_DEPRECATED "") +set(hive_core_r2_EXPORT_TAGS) +list(APPEND hive_core_r2_EXPORT_TAGS "ament_cmake") diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/ament_prefix_path.sh.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/ament_prefix_path.sh.stamp new file mode 100644 index 0000000..02e441b --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/ament_prefix_path.sh.stamp @@ -0,0 +1,4 @@ +# copied from +# ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh + +ament_prepend_unique_value AMENT_PREFIX_PATH "$AMENT_CURRENT_PREFIX" diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp new file mode 100644 index 0000000..ee49c9f --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp @@ -0,0 +1,14 @@ +# generated from ament/cmake/core/templates/nameConfig-version.cmake.in +set(PACKAGE_VERSION "@PACKAGE_VERSION@") + +set(PACKAGE_VERSION_EXACT False) +set(PACKAGE_VERSION_COMPATIBLE False) + +if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT True) + set(PACKAGE_VERSION_COMPATIBLE True) +endif() + +if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE True) +endif() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig.cmake.in.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig.cmake.in.stamp new file mode 100644 index 0000000..6fb3fe7 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/nameConfig.cmake.in.stamp @@ -0,0 +1,42 @@ +# generated from ament/cmake/core/templates/nameConfig.cmake.in + +# prevent multiple inclusion +if(_@PROJECT_NAME@_CONFIG_INCLUDED) + # ensure to keep the found flag the same + if(NOT DEFINED @PROJECT_NAME@_FOUND) + # explicitly set it to FALSE, otherwise CMake will set it to TRUE + set(@PROJECT_NAME@_FOUND FALSE) + elseif(NOT @PROJECT_NAME@_FOUND) + # use separate condition to avoid uninitialized variable warning + set(@PROJECT_NAME@_FOUND FALSE) + endif() + return() +endif() +set(_@PROJECT_NAME@_CONFIG_INCLUDED TRUE) + +# output package information +if(NOT @PROJECT_NAME@_FIND_QUIETLY) + message(STATUS "Found @PROJECT_NAME@: @PACKAGE_VERSION@ (${@PROJECT_NAME@_DIR})") +endif() + +# warn when using a deprecated package +if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "") + set(_msg "Package '@PROJECT_NAME@' is deprecated") + # append custom deprecation text if available + if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "TRUE") + set(_msg "${_msg} (@PACKAGE_DEPRECATED@)") + endif() + # optionally quiet the deprecation message + if(NOT ${@PROJECT_NAME@_DEPRECATED_QUIET}) + message(DEPRECATION "${_msg}") + endif() +endif() + +# flag package as ament-based to distinguish it after being find_package()-ed +set(@PROJECT_NAME@_FOUND_AMENT_PACKAGE TRUE) + +# include all config extra files +set(_extras "@PACKAGE_CONFIG_EXTRA_FILES@") +foreach(_extra ${_extras}) + include("${@PROJECT_NAME@_DIR}/${_extra}") +endforeach() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package.xml.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package.xml.stamp new file mode 100644 index 0000000..de099f8 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package.xml.stamp @@ -0,0 +1,18 @@ + + + + hive_core_r2 + 0.0.0 + TODO: Package description + hivecore + Apache-2.0 + + ament_cmake + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp new file mode 100644 index 0000000..8be9894 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp @@ -0,0 +1,150 @@ +#!/usr/bin/env python3 + +# Copyright 2014-2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import argparse +from collections import OrderedDict +import os +import sys + +from catkin_pkg.package import parse_package_string + + +def main(argv=sys.argv[1:]): + """ + Extract the information from package.xml and make them accessible to CMake. + + Parse the given package.xml file and + print CMake code defining several variables containing the content. + """ + parser = argparse.ArgumentParser( + description='Parse package.xml file and print CMake code defining ' + 'several variables', + ) + parser.add_argument( + 'package_xml', + type=argparse.FileType('r', encoding='utf-8'), + help='The path to a package.xml file', + ) + parser.add_argument( + 'outfile', + nargs='?', + help='The filename where the output should be written to', + ) + args = parser.parse_args(argv) + + try: + package = parse_package_string( + args.package_xml.read(), filename=args.package_xml.name) + except Exception as e: + print("Error parsing '%s':" % args.package_xml.name, file=sys.stderr) + raise e + finally: + args.package_xml.close() + + lines = generate_cmake_code(package) + if args.outfile: + with open(args.outfile, 'w', encoding='utf-8') as f: + for line in lines: + f.write('%s\n' % line) + else: + for line in lines: + print(line) + + +def get_dependency_values(key, depends): + dependencies = [] + + # Filter the dependencies, checking for any condition attributes + dependencies.append((key, ' '.join([ + '"%s"' % str(d) for d in depends + if d.condition is None or d.evaluate_condition(os.environ) + ]))) + + for d in depends: + comparisons = [ + 'version_lt', + 'version_lte', + 'version_eq', + 'version_gte', + 'version_gt'] + for comp in comparisons: + value = getattr(d, comp, None) + if value is not None: + dependencies.append(('%s_%s_%s' % (key, str(d), comp.upper()), + '"%s"' % value)) + return dependencies + + +def generate_cmake_code(package): + """ + Return a list of CMake set() commands containing the manifest information. + + :param package: catkin_pkg.package.Package + :returns: list of str + """ + variables = [] + variables.append(('VERSION', '"%s"' % package.version)) + + variables.append(( + 'MAINTAINER', + '"%s"' % (', '.join([str(m) for m in package.maintainers])))) + + variables.extend(get_dependency_values('BUILD_DEPENDS', + package.build_depends)) + variables.extend(get_dependency_values('BUILDTOOL_DEPENDS', + package.buildtool_depends)) + variables.extend(get_dependency_values('BUILD_EXPORT_DEPENDS', + package.build_export_depends)) + variables.extend(get_dependency_values('BUILDTOOL_EXPORT_DEPENDS', + package.buildtool_export_depends)) + variables.extend(get_dependency_values('EXEC_DEPENDS', + package.exec_depends)) + variables.extend(get_dependency_values('TEST_DEPENDS', + package.test_depends)) + variables.extend(get_dependency_values('GROUP_DEPENDS', + package.group_depends)) + variables.extend(get_dependency_values('MEMBER_OF_GROUPS', + package.member_of_groups)) + + deprecated = [e.content for e in package.exports + if e.tagname == 'deprecated'] + variables.append(('DEPRECATED', + '"%s"' % ((deprecated[0] if deprecated[0] else 'TRUE') + if deprecated + else ''))) + + lines = [] + lines.append('set(_AMENT_PACKAGE_NAME "%s")' % package.name) + for (k, v) in variables: + lines.append('set(%s_%s %s)' % (package.name, k, v)) + + lines.append('set(%s_EXPORT_TAGS)' % package.name) + replaces = OrderedDict() + replaces['${prefix}/'] = '' + replaces['\\'] = '\\\\' # escape backslashes + replaces['"'] = '\\"' # prevent double quotes to end the CMake string + replaces[';'] = '\\;' # prevent semicolons to be interpreted as list separators + for export in package.exports: + export = str(export) + for k, v in replaces.items(): + export = export.replace(k, v) + lines.append('list(APPEND %s_EXPORT_TAGS "%s")' % (package.name, export)) + + return lines + + +if __name__ == '__main__': + main() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/path.sh.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/path.sh.stamp new file mode 100644 index 0000000..e59b749 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/path.sh.stamp @@ -0,0 +1,5 @@ +# copied from ament_cmake_core/cmake/environment_hooks/environment/path.sh + +if [ -d "$AMENT_CURRENT_PREFIX/bin" ]; then + ament_prepend_unique_value PATH "$AMENT_CURRENT_PREFIX/bin" +fi diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/templates_2_cmake.py.stamp b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/templates_2_cmake.py.stamp new file mode 100644 index 0000000..fb2fb47 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_core/stamps/templates_2_cmake.py.stamp @@ -0,0 +1,112 @@ +#!/usr/bin/env python3 + +# Copyright 2014-2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import argparse +import os +import sys + +from ament_package.templates import get_environment_hook_template_path +from ament_package.templates import get_package_level_template_names +from ament_package.templates import get_package_level_template_path +from ament_package.templates import get_prefix_level_template_names +from ament_package.templates import get_prefix_level_template_path + +IS_WINDOWS = os.name == 'nt' + + +def main(argv=sys.argv[1:]): + """ + Extract the information about templates provided by ament_package. + + Call the API provided by ament_package and + print CMake code defining several variables containing information about + the available templates. + """ + parser = argparse.ArgumentParser( + description='Extract information about templates provided by ' + 'ament_package and print CMake code defining several ' + 'variables', + ) + parser.add_argument( + 'outfile', + nargs='?', + help='The filename where the output should be written to', + ) + args = parser.parse_args(argv) + + lines = generate_cmake_code() + if args.outfile: + basepath = os.path.dirname(args.outfile) + if not os.path.exists(basepath): + os.makedirs(basepath) + with open(args.outfile, 'w') as f: + for line in lines: + f.write('%s\n' % line) + else: + for line in lines: + print(line) + + +def generate_cmake_code(): + """ + Return a list of CMake set() commands containing the template information. + + :returns: list of str + """ + variables = [] + + if not IS_WINDOWS: + variables.append(( + 'ENVIRONMENT_HOOK_LIBRARY_PATH', + '"%s"' % get_environment_hook_template_path('library_path.sh'))) + else: + variables.append(('ENVIRONMENT_HOOK_LIBRARY_PATH', '')) + + ext = '.bat.in' if IS_WINDOWS else '.sh.in' + variables.append(( + 'ENVIRONMENT_HOOK_PYTHONPATH', + '"%s"' % get_environment_hook_template_path('pythonpath' + ext))) + + templates = [] + for name in get_package_level_template_names(): + templates.append('"%s"' % get_package_level_template_path(name)) + variables.append(( + 'PACKAGE_LEVEL', + templates)) + + templates = [] + for name in get_prefix_level_template_names(): + templates.append('"%s"' % get_prefix_level_template_path(name)) + variables.append(( + 'PREFIX_LEVEL', + templates)) + + lines = [] + for (k, v) in variables: + if isinstance(v, list): + lines.append('set(ament_cmake_package_templates_%s "")' % k) + for vv in v: + lines.append('list(APPEND ament_cmake_package_templates_%s %s)' + % (k, vv)) + else: + lines.append('set(ament_cmake_package_templates_%s %s)' % (k, v)) + # Ensure backslashes are replaced with forward slashes because CMake cannot + # parse files with backslashes in it. + return [line.replace('\\', '/') for line in lines] + + +if __name__ == '__main__': + main() diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/ament_prefix_path.dsv b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/ament_prefix_path.dsv new file mode 100644 index 0000000..79d4c95 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/ament_prefix_path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.bash b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.bash new file mode 100644 index 0000000..49782f2 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.bash @@ -0,0 +1,46 @@ +# generated from ament_package/template/package_level/local_setup.bash.in + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.dsv b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.dsv new file mode 100644 index 0000000..fc4e706 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.dsv @@ -0,0 +1,2 @@ +source;share/hive_core_r2/environment/ament_prefix_path.sh +source;share/hive_core_r2/environment/path.sh diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.sh b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.sh new file mode 100644 index 0000000..278cb88 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.sh @@ -0,0 +1,184 @@ +# generated from ament_package/template/package_level/local_setup.sh.in + +# since this file is sourced use either the provided AMENT_CURRENT_PREFIX +# or fall back to the destination set at configure time +: ${AMENT_CURRENT_PREFIX:="/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2"} +if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then + if [ -z "$COLCON_CURRENT_PREFIX" ]; then + echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \ + "exist. Consider sourcing a different extension than '.sh'." 1>&2 + else + AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" + fi +fi + +# function to append values to environment variables +# using colons as separators and avoiding leading separators +ament_append_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # avoid leading separator + eval _values=\"\$$_listname\" + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + _ament_append_value_IFS=$IFS + unset IFS + eval export $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + IFS=$_ament_append_value_IFS + unset _ament_append_value_IFS + fi + unset _values + + unset _value + unset _listname +} + +# function to append non-duplicate values to environment variables +# using colons as separators and avoiding leading separators +ament_append_unique_value() { + # arguments + _listname=$1 + _value=$2 + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\$$_listname + _duplicate= + _ament_append_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ $_item = $_value ]; then + _duplicate=1 + fi + done + unset _item + + # append only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid leading separator + if [ -z "$_values" ]; then + eval $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + fi + fi + IFS=$_ament_append_unique_value_IFS + unset _ament_append_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# function to prepend non-duplicate values to environment variables +# using colons as separators and avoiding trailing separators +ament_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\"\$$_listname\" + _duplicate= + _ament_prepend_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ "$_item" = "$_value" ]; then + _duplicate=1 + fi + done + unset _item + + # prepend only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid trailing separator + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval export $_listname=\"$_value:\$$_listname\" + #eval echo "prepend list \$$_listname" + fi + fi + IFS=$_ament_prepend_unique_value_IFS + unset _ament_prepend_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# list all environment hooks of this package +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/hive_core_r2/environment/ament_prefix_path.sh" +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/hive_core_r2/environment/path.sh" + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS + fi + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + if [ -f "$_hook" ]; then + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + # trace output + if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_hook\"" + fi + . "$_hook" + fi + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +# reset AMENT_CURRENT_PREFIX after each package +# allowing to source multiple package-level setup files +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.zsh b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.zsh new file mode 100644 index 0000000..fe161be --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.zsh @@ -0,0 +1,59 @@ +# generated from ament_package/template/package_level/local_setup.zsh.in + +AMENT_SHELL=zsh + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# function to convert array-like strings into arrays +# to wordaround SH_WORD_SPLIT not being set +ament_zsh_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +# the package-level local_setup file unsets AMENT_CURRENT_PREFIX +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/package.dsv b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/package.dsv new file mode 100644 index 0000000..5e158cf --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/package.dsv @@ -0,0 +1,4 @@ +source;share/hive_core_r2/local_setup.bash +source;share/hive_core_r2/local_setup.dsv +source;share/hive_core_r2/local_setup.sh +source;share/hive_core_r2/local_setup.zsh diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/path.dsv b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/path.dsv new file mode 100644 index 0000000..b94426a --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate-if-exists;PATH;bin diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 b/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 new file mode 100644 index 0000000..25ce83a --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 @@ -0,0 +1 @@ +ament_lint_auto;ament_lint_common \ No newline at end of file diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/packages/hive_core_r2 b/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/packages/hive_core_r2 new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 b/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 new file mode 100644 index 0000000..6350bc1 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 @@ -0,0 +1 @@ +/opt/ros/humble \ No newline at end of file diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_package_templates/templates.cmake b/HiveCoreR2/build/hive_core_r2/ament_cmake_package_templates/templates.cmake new file mode 100644 index 0000000..42a5a03 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_package_templates/templates.cmake @@ -0,0 +1,14 @@ +set(ament_cmake_package_templates_ENVIRONMENT_HOOK_LIBRARY_PATH "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/environment_hook/library_path.sh") +set(ament_cmake_package_templates_ENVIRONMENT_HOOK_PYTHONPATH "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/environment_hook/pythonpath.sh.in") +set(ament_cmake_package_templates_PACKAGE_LEVEL "") +list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.bash.in") +list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.sh.in") +list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/package_level/local_setup.zsh.in") +set(ament_cmake_package_templates_PREFIX_LEVEL "") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/local_setup.bash") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/local_setup.sh.in") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/local_setup.zsh") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/setup.bash") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/setup.sh.in") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/setup.zsh") +list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/opt/ros/humble/lib/python3.10/site-packages/ament_package/template/prefix_level/_local_setup_util.py") diff --git a/HiveCoreR2/build/hive_core_r2/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake b/HiveCoreR2/build/hive_core_r2/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake new file mode 100644 index 0000000..ea3c576 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake @@ -0,0 +1,57 @@ +# generated from +# ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in + +function(ament_cmake_uninstall_target_remove_empty_directories path) + set(install_space "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2") + if(install_space STREQUAL "") + message(FATAL_ERROR "The CMAKE_INSTALL_PREFIX variable must not be empty") + endif() + + string(LENGTH "${install_space}" length) + string(SUBSTRING "${path}" 0 ${length} path_prefix) + if(NOT path_prefix STREQUAL install_space) + message(FATAL_ERROR "The path '${path}' must be within the install space '${install_space}'") + endif() + if(path STREQUAL install_space) + return() + endif() + + # check if directory is empty + file(GLOB files "${path}/*") + list(LENGTH files length) + if(length EQUAL 0) + message(STATUS "Uninstalling: ${path}/") + execute_process(COMMAND "/home/hivecore/.local/lib/python3.10/site-packages/cmake/data/bin/cmake" "-E" "remove_directory" "${path}") + # recursively try to remove parent directories + get_filename_component(parent_path "${path}" PATH) + ament_cmake_uninstall_target_remove_empty_directories("${parent_path}") + endif() +endfunction() + +# uninstall files installed using the standard install() function +set(install_manifest "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/install_manifest.txt") +if(NOT EXISTS "${install_manifest}") + message(FATAL_ERROR "Cannot find install manifest: ${install_manifest}") +endif() + +file(READ "${install_manifest}" installed_files) +string(REGEX REPLACE "\n" ";" installed_files "${installed_files}") +foreach(installed_file ${installed_files}) + if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}") + message(STATUS "Uninstalling: ${installed_file}") + file(REMOVE "${installed_file}") + if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}") + message(FATAL_ERROR "Failed to remove '${installed_file}'") + endif() + + # remove empty parent folders + get_filename_component(parent_path "${installed_file}" PATH) + ament_cmake_uninstall_target_remove_empty_directories("${parent_path}") + endif() +endforeach() + +# end of template + +message(STATUS "Execute custom uninstall script") + +# begin of custom uninstall code diff --git a/HiveCoreR2/build/hive_core_r2/cmake_args.last b/HiveCoreR2/build/hive_core_r2/cmake_args.last new file mode 100644 index 0000000..4af1832 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/cmake_args.last @@ -0,0 +1 @@ +None \ No newline at end of file diff --git a/HiveCoreR2/build/hive_core_r2/cmake_install.cmake b/HiveCoreR2/build/hive_core_r2/cmake_install.cmake new file mode 100644 index 0000000..e34b8a2 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/cmake_install.cmake @@ -0,0 +1,133 @@ +# Install script for directory: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE DIRECTORY FILES + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/launch" + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/urdf" + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/config" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/package_run_dependencies" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/hive_core_r2") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/parent_prefix_path" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/hive_core_r2") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2/environment" TYPE FILE FILES "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2/environment" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/ament_prefix_path.dsv") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2/environment" TYPE FILE FILES "/opt/ros/humble/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2/environment" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/path.dsv") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.bash") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.sh") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.zsh") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/local_setup.dsv") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_environment_hooks/package.dsv") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/packages" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_index/share/ament_index/resource_index/packages/hive_core_r2") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2/cmake" TYPE FILE FILES + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config.cmake" + "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/ament_cmake_core/hive_core_r2Config-version.cmake" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/hive_core_r2" TYPE FILE FILES "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2/package.xml") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/HiveCoreR2/build/hive_core_r2/colcon_build.rc b/HiveCoreR2/build/hive_core_r2/colcon_build.rc new file mode 100644 index 0000000..573541a --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/colcon_build.rc @@ -0,0 +1 @@ +0 diff --git a/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh b/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh new file mode 100644 index 0000000..f9867d5 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh @@ -0,0 +1 @@ +# generated from colcon_core/shell/template/command_prefix.sh.em diff --git a/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh.env b/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh.env new file mode 100644 index 0000000..df75c05 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/colcon_command_prefix_build.sh.env @@ -0,0 +1,80 @@ +AMENT_PREFIX_PATH=/opt/ros/humble +BUNDLED_DEBUGPY_PATH=/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy +CHROME_DESKTOP=code.desktop +COLCON=1 +COLORTERM=truecolor +DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus +DESKTOP_SESSION=ubuntu +DISPLAY=:1 +GDK_BACKEND=x11 +GDMSESSION=ubuntu +GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/code.desktop +GIO_LAUNCHED_DESKTOP_FILE_PID=63813 +GIT_ASKPASS=/usr/share/code/resources/app/extensions/git/dist/askpass.sh +GJS_DEBUG_OUTPUT=stderr +GJS_DEBUG_TOPICS=JS ERROR;JS LOG +GNOME_DESKTOP_SESSION_ID=this-is-deprecated +GNOME_SHELL_SESSION_MODE=ubuntu +GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 +GTK_IM_MODULE=ibus +GTK_MODULES=gail:atk-bridge +HOME=/home/hivecore +IM_CONFIG_PHASE=1 +INVOCATION_ID=0360bd67df414a9e9de83e899b97036d +JOURNAL_STREAM=8:4766 +LANG=en_US.UTF-8 +LC_ADDRESS=zh_CN.UTF-8 +LC_ALL=en_US.UTF-8 +LC_IDENTIFICATION=zh_CN.UTF-8 +LC_MEASUREMENT=zh_CN.UTF-8 +LC_MONETARY=zh_CN.UTF-8 +LC_NAME=zh_CN.UTF-8 +LC_NUMERIC=zh_CN.UTF-8 +LC_PAPER=zh_CN.UTF-8 +LC_TELEPHONE=zh_CN.UTF-8 +LC_TIME=zh_CN.UTF-8 +LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib:: +LESSCLOSE=/usr/bin/lesspipe %s %s +LESSOPEN=| /usr/bin/lesspipe %s +LOGNAME=hivecore +LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: +MANAGERPID=1976 +ORIGINAL_XDG_CURRENT_DESKTOP=ubuntu:GNOME +PATH=/home/hivecore/.local/bin:/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts +PWD=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +PYDEVD_DISABLE_FILE_VALIDATION=1 +PYTHONPATH=/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages +QT_ACCESSIBILITY=1 +QT_IM_MODULE=ibus +ROS_DISTRO=humble +ROS_LOCALHOST_ONLY=0 +ROS_PYTHON_VERSION=3 +ROS_VERSION=2 +SESSION_MANAGER=local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228 +SHELL=/bin/bash +SHLVL=1 +SSH_AGENT_LAUNCHER=gnome-keyring +SSH_AUTH_SOCK=/run/user/1000/keyring/ssh +SYSTEMD_EXEC_PID=2256 +TERM=xterm-256color +TERM_PROGRAM=vscode +TERM_PROGRAM_VERSION=1.101.2 +USER=hivecore +USERNAME=hivecore +VSCODE_DEBUGPY_ADAPTER_ENDPOINTS=/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt +VSCODE_GIT_ASKPASS_EXTRA_ARGS= +VSCODE_GIT_ASKPASS_MAIN=/usr/share/code/resources/app/extensions/git/dist/askpass-main.js +VSCODE_GIT_ASKPASS_NODE=/usr/share/code/code +VSCODE_GIT_IPC_HANDLE=/run/user/1000/vscode-git-3bd65c1082.sock +WINDOWPATH=2 +XAUTHORITY=/run/user/1000/gdm/Xauthority +XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg +XDG_CURRENT_DESKTOP=Unity +XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop +XDG_MENU_PREFIX=gnome- +XDG_RUNTIME_DIR=/run/user/1000 +XDG_SESSION_CLASS=user +XDG_SESSION_DESKTOP=ubuntu +XDG_SESSION_TYPE=x11 +XMODIFIERS=@im=ibus +_=/usr/bin/colcon diff --git a/HiveCoreR2/build/hive_core_r2/install_manifest.txt b/HiveCoreR2/build/hive_core_r2/install_manifest.txt new file mode 100644 index 0000000..f404be3 --- /dev/null +++ b/HiveCoreR2/build/hive_core_r2/install_manifest.txt @@ -0,0 +1,33 @@ +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml \ No newline at end of file diff --git a/HiveCoreR2/install/.colcon_install_layout b/HiveCoreR2/install/.colcon_install_layout new file mode 100644 index 0000000..3aad533 --- /dev/null +++ b/HiveCoreR2/install/.colcon_install_layout @@ -0,0 +1 @@ +isolated diff --git a/HiveCoreR2/install/COLCON_IGNORE b/HiveCoreR2/install/COLCON_IGNORE new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/install/_local_setup_util_ps1.py b/HiveCoreR2/install/_local_setup_util_ps1.py new file mode 100644 index 0000000..3c6d9e8 --- /dev/null +++ b/HiveCoreR2/install/_local_setup_util_ps1.py @@ -0,0 +1,407 @@ +# Copyright 2016-2019 Dirk Thomas +# Licensed under the Apache License, Version 2.0 + +import argparse +from collections import OrderedDict +import os +from pathlib import Path +import sys + + +FORMAT_STR_COMMENT_LINE = '# {comment}' +FORMAT_STR_SET_ENV_VAR = 'Set-Item -Path "Env:{name}" -Value "{value}"' +FORMAT_STR_USE_ENV_VAR = '$env:{name}' +FORMAT_STR_INVOKE_SCRIPT = '_colcon_prefix_powershell_source_script "{script_path}"' # noqa: E501 +FORMAT_STR_REMOVE_LEADING_SEPARATOR = '' # noqa: E501 +FORMAT_STR_REMOVE_TRAILING_SEPARATOR = '' # noqa: E501 + +DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' +DSV_TYPE_SET = 'set' +DSV_TYPE_SET_IF_UNSET = 'set-if-unset' +DSV_TYPE_SOURCE = 'source' + + +def main(argv=sys.argv[1:]): # noqa: D103 + parser = argparse.ArgumentParser( + description='Output shell commands for the packages in topological ' + 'order') + parser.add_argument( + 'primary_extension', + help='The file extension of the primary shell') + parser.add_argument( + 'additional_extension', nargs='?', + help='The additional file extension to be considered') + parser.add_argument( + '--merged-install', action='store_true', + help='All install prefixes are merged into a single location') + args = parser.parse_args(argv) + + packages = get_packages(Path(__file__).parent, args.merged_install) + + ordered_packages = order_packages(packages) + for pkg_name in ordered_packages: + if _include_comments(): + print( + FORMAT_STR_COMMENT_LINE.format_map( + {'comment': 'Package: ' + pkg_name})) + prefix = os.path.abspath(os.path.dirname(__file__)) + if not args.merged_install: + prefix = os.path.join(prefix, pkg_name) + for line in get_commands( + pkg_name, prefix, args.primary_extension, + args.additional_extension + ): + print(line) + + for line in _remove_ending_separators(): + print(line) + + +def get_packages(prefix_path, merged_install): + """ + Find packages based on colcon-specific files created during installation. + + :param Path prefix_path: The install prefix path of all packages + :param bool merged_install: The flag if the packages are all installed + directly in the prefix or if each package is installed in a subdirectory + named after the package + :returns: A mapping from the package name to the set of runtime + dependencies + :rtype: dict + """ + packages = {} + # since importing colcon_core isn't feasible here the following constant + # must match colcon_core.location.get_relative_package_index_path() + subdirectory = 'share/colcon-core/packages' + if merged_install: + # return if workspace is empty + if not (prefix_path / subdirectory).is_dir(): + return packages + # find all files in the subdirectory + for p in (prefix_path / subdirectory).iterdir(): + if not p.is_file(): + continue + if p.name.startswith('.'): + continue + add_package_runtime_dependencies(p, packages) + else: + # for each subdirectory look for the package specific file + for p in prefix_path.iterdir(): + if not p.is_dir(): + continue + if p.name.startswith('.'): + continue + p = p / subdirectory / p.name + if p.is_file(): + add_package_runtime_dependencies(p, packages) + + # remove unknown dependencies + pkg_names = set(packages.keys()) + for k in packages.keys(): + packages[k] = {d for d in packages[k] if d in pkg_names} + + return packages + + +def add_package_runtime_dependencies(path, packages): + """ + Check the path and if it exists extract the packages runtime dependencies. + + :param Path path: The resource file containing the runtime dependencies + :param dict packages: A mapping from package names to the sets of runtime + dependencies to add to + """ + content = path.read_text() + dependencies = set(content.split(os.pathsep) if content else []) + packages[path.name] = dependencies + + +def order_packages(packages): + """ + Order packages topologically. + + :param dict packages: A mapping from package name to the set of runtime + dependencies + :returns: The package names + :rtype: list + """ + # select packages with no dependencies in alphabetical order + to_be_ordered = list(packages.keys()) + ordered = [] + while to_be_ordered: + pkg_names_without_deps = [ + name for name in to_be_ordered if not packages[name]] + if not pkg_names_without_deps: + reduce_cycle_set(packages) + raise RuntimeError( + 'Circular dependency between: ' + ', '.join(sorted(packages))) + pkg_names_without_deps.sort() + pkg_name = pkg_names_without_deps[0] + to_be_ordered.remove(pkg_name) + ordered.append(pkg_name) + # remove item from dependency lists + for k in list(packages.keys()): + if pkg_name in packages[k]: + packages[k].remove(pkg_name) + return ordered + + +def reduce_cycle_set(packages): + """ + Reduce the set of packages to the ones part of the circular dependency. + + :param dict packages: A mapping from package name to the set of runtime + dependencies which is modified in place + """ + last_depended = None + while len(packages) > 0: + # get all remaining dependencies + depended = set() + for pkg_name, dependencies in packages.items(): + depended = depended.union(dependencies) + # remove all packages which are not dependent on + for name in list(packages.keys()): + if name not in depended: + del packages[name] + if last_depended: + # if remaining packages haven't changed return them + if last_depended == depended: + return packages.keys() + # otherwise reduce again + last_depended = depended + + +def _include_comments(): + # skipping comment lines when COLCON_TRACE is not set speeds up the + # processing especially on Windows + return bool(os.environ.get('COLCON_TRACE')) + + +def get_commands(pkg_name, prefix, primary_extension, additional_extension): + commands = [] + package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') + if os.path.exists(package_dsv_path): + commands += process_dsv_file( + package_dsv_path, prefix, primary_extension, additional_extension) + return commands + + +def process_dsv_file( + dsv_path, prefix, primary_extension=None, additional_extension=None +): + commands = [] + if _include_comments(): + commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) + with open(dsv_path, 'r') as h: + content = h.read() + lines = content.splitlines() + + basenames = OrderedDict() + for i, line in enumerate(lines): + # skip over empty or whitespace-only lines + if not line.strip(): + continue + # skip over comments + if line.startswith('#'): + continue + try: + type_, remainder = line.split(';', 1) + except ValueError: + raise RuntimeError( + "Line %d in '%s' doesn't contain a semicolon separating the " + 'type from the arguments' % (i + 1, dsv_path)) + if type_ != DSV_TYPE_SOURCE: + # handle non-source lines + try: + commands += handle_dsv_types_except_source( + type_, remainder, prefix) + except RuntimeError as e: + raise RuntimeError( + "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e + else: + # group remaining source lines by basename + path_without_ext, ext = os.path.splitext(remainder) + if path_without_ext not in basenames: + basenames[path_without_ext] = set() + assert ext.startswith('.') + ext = ext[1:] + if ext in (primary_extension, additional_extension): + basenames[path_without_ext].add(ext) + + # add the dsv extension to each basename if the file exists + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if os.path.exists(basename + '.dsv'): + extensions.add('dsv') + + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if 'dsv' in extensions: + # process dsv files recursively + commands += process_dsv_file( + basename + '.dsv', prefix, primary_extension=primary_extension, + additional_extension=additional_extension) + elif primary_extension in extensions and len(extensions) == 1: + # source primary-only files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + primary_extension})] + elif additional_extension in extensions: + # source non-primary files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + additional_extension})] + + return commands + + +def handle_dsv_types_except_source(type_, remainder, prefix): + commands = [] + if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): + try: + env_name, value = remainder.split(';', 1) + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the value') + try_prefixed_value = os.path.join(prefix, value) if value else prefix + if os.path.exists(try_prefixed_value): + value = try_prefixed_value + if type_ == DSV_TYPE_SET: + commands += _set(env_name, value) + elif type_ == DSV_TYPE_SET_IF_UNSET: + commands += _set_if_unset(env_name, value) + else: + assert False + elif type_ in ( + DSV_TYPE_APPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS + ): + try: + env_name_and_values = remainder.split(';') + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the values') + env_name = env_name_and_values[0] + values = env_name_and_values[1:] + for value in values: + if not value: + value = prefix + elif not os.path.isabs(value): + value = os.path.join(prefix, value) + if ( + type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and + not os.path.exists(value) + ): + comment = f'skip extending {env_name} with not existing ' \ + f'path: {value}' + if _include_comments(): + commands.append( + FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) + elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: + commands += _append_unique_value(env_name, value) + else: + commands += _prepend_unique_value(env_name, value) + else: + raise RuntimeError( + 'contains an unknown environment hook type: ' + type_) + return commands + + +env_state = {} + + +def _append_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # append even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional leading separator + extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': extend + value}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +def _prepend_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # prepend even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional trailing separator + extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value + extend}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +# generate commands for removing prepended underscores +def _remove_ending_separators(): + # do nothing if the shell extension does not implement the logic + if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: + return [] + + global env_state + commands = [] + for name in env_state: + # skip variables that already had values before this script started prepending + if name in os.environ: + continue + commands += [ + FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), + FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] + return commands + + +def _set(name, value): + global env_state + env_state[name] = value + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + return [line] + + +def _set_if_unset(name, value): + global env_state + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + if env_state.get(name, os.environ.get(name)): + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +if __name__ == '__main__': # pragma: no cover + try: + rc = main() + except RuntimeError as e: + print(str(e), file=sys.stderr) + rc = 1 + sys.exit(rc) diff --git a/HiveCoreR2/install/_local_setup_util_sh.py b/HiveCoreR2/install/_local_setup_util_sh.py new file mode 100644 index 0000000..f67eaa9 --- /dev/null +++ b/HiveCoreR2/install/_local_setup_util_sh.py @@ -0,0 +1,407 @@ +# Copyright 2016-2019 Dirk Thomas +# Licensed under the Apache License, Version 2.0 + +import argparse +from collections import OrderedDict +import os +from pathlib import Path +import sys + + +FORMAT_STR_COMMENT_LINE = '# {comment}' +FORMAT_STR_SET_ENV_VAR = 'export {name}="{value}"' +FORMAT_STR_USE_ENV_VAR = '${name}' +FORMAT_STR_INVOKE_SCRIPT = 'COLCON_CURRENT_PREFIX="{prefix}" _colcon_prefix_sh_source_script "{script_path}"' # noqa: E501 +FORMAT_STR_REMOVE_LEADING_SEPARATOR = 'if [ "$(echo -n ${name} | head -c 1)" = ":" ]; then export {name}=${{{name}#?}} ; fi' # noqa: E501 +FORMAT_STR_REMOVE_TRAILING_SEPARATOR = 'if [ "$(echo -n ${name} | tail -c 1)" = ":" ]; then export {name}=${{{name}%?}} ; fi' # noqa: E501 + +DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' +DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' +DSV_TYPE_SET = 'set' +DSV_TYPE_SET_IF_UNSET = 'set-if-unset' +DSV_TYPE_SOURCE = 'source' + + +def main(argv=sys.argv[1:]): # noqa: D103 + parser = argparse.ArgumentParser( + description='Output shell commands for the packages in topological ' + 'order') + parser.add_argument( + 'primary_extension', + help='The file extension of the primary shell') + parser.add_argument( + 'additional_extension', nargs='?', + help='The additional file extension to be considered') + parser.add_argument( + '--merged-install', action='store_true', + help='All install prefixes are merged into a single location') + args = parser.parse_args(argv) + + packages = get_packages(Path(__file__).parent, args.merged_install) + + ordered_packages = order_packages(packages) + for pkg_name in ordered_packages: + if _include_comments(): + print( + FORMAT_STR_COMMENT_LINE.format_map( + {'comment': 'Package: ' + pkg_name})) + prefix = os.path.abspath(os.path.dirname(__file__)) + if not args.merged_install: + prefix = os.path.join(prefix, pkg_name) + for line in get_commands( + pkg_name, prefix, args.primary_extension, + args.additional_extension + ): + print(line) + + for line in _remove_ending_separators(): + print(line) + + +def get_packages(prefix_path, merged_install): + """ + Find packages based on colcon-specific files created during installation. + + :param Path prefix_path: The install prefix path of all packages + :param bool merged_install: The flag if the packages are all installed + directly in the prefix or if each package is installed in a subdirectory + named after the package + :returns: A mapping from the package name to the set of runtime + dependencies + :rtype: dict + """ + packages = {} + # since importing colcon_core isn't feasible here the following constant + # must match colcon_core.location.get_relative_package_index_path() + subdirectory = 'share/colcon-core/packages' + if merged_install: + # return if workspace is empty + if not (prefix_path / subdirectory).is_dir(): + return packages + # find all files in the subdirectory + for p in (prefix_path / subdirectory).iterdir(): + if not p.is_file(): + continue + if p.name.startswith('.'): + continue + add_package_runtime_dependencies(p, packages) + else: + # for each subdirectory look for the package specific file + for p in prefix_path.iterdir(): + if not p.is_dir(): + continue + if p.name.startswith('.'): + continue + p = p / subdirectory / p.name + if p.is_file(): + add_package_runtime_dependencies(p, packages) + + # remove unknown dependencies + pkg_names = set(packages.keys()) + for k in packages.keys(): + packages[k] = {d for d in packages[k] if d in pkg_names} + + return packages + + +def add_package_runtime_dependencies(path, packages): + """ + Check the path and if it exists extract the packages runtime dependencies. + + :param Path path: The resource file containing the runtime dependencies + :param dict packages: A mapping from package names to the sets of runtime + dependencies to add to + """ + content = path.read_text() + dependencies = set(content.split(os.pathsep) if content else []) + packages[path.name] = dependencies + + +def order_packages(packages): + """ + Order packages topologically. + + :param dict packages: A mapping from package name to the set of runtime + dependencies + :returns: The package names + :rtype: list + """ + # select packages with no dependencies in alphabetical order + to_be_ordered = list(packages.keys()) + ordered = [] + while to_be_ordered: + pkg_names_without_deps = [ + name for name in to_be_ordered if not packages[name]] + if not pkg_names_without_deps: + reduce_cycle_set(packages) + raise RuntimeError( + 'Circular dependency between: ' + ', '.join(sorted(packages))) + pkg_names_without_deps.sort() + pkg_name = pkg_names_without_deps[0] + to_be_ordered.remove(pkg_name) + ordered.append(pkg_name) + # remove item from dependency lists + for k in list(packages.keys()): + if pkg_name in packages[k]: + packages[k].remove(pkg_name) + return ordered + + +def reduce_cycle_set(packages): + """ + Reduce the set of packages to the ones part of the circular dependency. + + :param dict packages: A mapping from package name to the set of runtime + dependencies which is modified in place + """ + last_depended = None + while len(packages) > 0: + # get all remaining dependencies + depended = set() + for pkg_name, dependencies in packages.items(): + depended = depended.union(dependencies) + # remove all packages which are not dependent on + for name in list(packages.keys()): + if name not in depended: + del packages[name] + if last_depended: + # if remaining packages haven't changed return them + if last_depended == depended: + return packages.keys() + # otherwise reduce again + last_depended = depended + + +def _include_comments(): + # skipping comment lines when COLCON_TRACE is not set speeds up the + # processing especially on Windows + return bool(os.environ.get('COLCON_TRACE')) + + +def get_commands(pkg_name, prefix, primary_extension, additional_extension): + commands = [] + package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') + if os.path.exists(package_dsv_path): + commands += process_dsv_file( + package_dsv_path, prefix, primary_extension, additional_extension) + return commands + + +def process_dsv_file( + dsv_path, prefix, primary_extension=None, additional_extension=None +): + commands = [] + if _include_comments(): + commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) + with open(dsv_path, 'r') as h: + content = h.read() + lines = content.splitlines() + + basenames = OrderedDict() + for i, line in enumerate(lines): + # skip over empty or whitespace-only lines + if not line.strip(): + continue + # skip over comments + if line.startswith('#'): + continue + try: + type_, remainder = line.split(';', 1) + except ValueError: + raise RuntimeError( + "Line %d in '%s' doesn't contain a semicolon separating the " + 'type from the arguments' % (i + 1, dsv_path)) + if type_ != DSV_TYPE_SOURCE: + # handle non-source lines + try: + commands += handle_dsv_types_except_source( + type_, remainder, prefix) + except RuntimeError as e: + raise RuntimeError( + "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e + else: + # group remaining source lines by basename + path_without_ext, ext = os.path.splitext(remainder) + if path_without_ext not in basenames: + basenames[path_without_ext] = set() + assert ext.startswith('.') + ext = ext[1:] + if ext in (primary_extension, additional_extension): + basenames[path_without_ext].add(ext) + + # add the dsv extension to each basename if the file exists + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if os.path.exists(basename + '.dsv'): + extensions.add('dsv') + + for basename, extensions in basenames.items(): + if not os.path.isabs(basename): + basename = os.path.join(prefix, basename) + if 'dsv' in extensions: + # process dsv files recursively + commands += process_dsv_file( + basename + '.dsv', prefix, primary_extension=primary_extension, + additional_extension=additional_extension) + elif primary_extension in extensions and len(extensions) == 1: + # source primary-only files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + primary_extension})] + elif additional_extension in extensions: + # source non-primary files + commands += [ + FORMAT_STR_INVOKE_SCRIPT.format_map({ + 'prefix': prefix, + 'script_path': basename + '.' + additional_extension})] + + return commands + + +def handle_dsv_types_except_source(type_, remainder, prefix): + commands = [] + if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): + try: + env_name, value = remainder.split(';', 1) + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the value') + try_prefixed_value = os.path.join(prefix, value) if value else prefix + if os.path.exists(try_prefixed_value): + value = try_prefixed_value + if type_ == DSV_TYPE_SET: + commands += _set(env_name, value) + elif type_ == DSV_TYPE_SET_IF_UNSET: + commands += _set_if_unset(env_name, value) + else: + assert False + elif type_ in ( + DSV_TYPE_APPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE, + DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS + ): + try: + env_name_and_values = remainder.split(';') + except ValueError: + raise RuntimeError( + "doesn't contain a semicolon separating the environment name " + 'from the values') + env_name = env_name_and_values[0] + values = env_name_and_values[1:] + for value in values: + if not value: + value = prefix + elif not os.path.isabs(value): + value = os.path.join(prefix, value) + if ( + type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and + not os.path.exists(value) + ): + comment = f'skip extending {env_name} with not existing ' \ + f'path: {value}' + if _include_comments(): + commands.append( + FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) + elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: + commands += _append_unique_value(env_name, value) + else: + commands += _prepend_unique_value(env_name, value) + else: + raise RuntimeError( + 'contains an unknown environment hook type: ' + type_) + return commands + + +env_state = {} + + +def _append_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # append even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional leading separator + extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': extend + value}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +def _prepend_unique_value(name, value): + global env_state + if name not in env_state: + if os.environ.get(name): + env_state[name] = set(os.environ[name].split(os.pathsep)) + else: + env_state[name] = set() + # prepend even if the variable has not been set yet, in case a shell script sets the + # same variable without the knowledge of this Python script. + # later _remove_ending_separators() will cleanup any unintentional trailing separator + extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value + extend}) + if value not in env_state[name]: + env_state[name].add(value) + else: + if not _include_comments(): + return [] + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +# generate commands for removing prepended underscores +def _remove_ending_separators(): + # do nothing if the shell extension does not implement the logic + if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: + return [] + + global env_state + commands = [] + for name in env_state: + # skip variables that already had values before this script started prepending + if name in os.environ: + continue + commands += [ + FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), + FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] + return commands + + +def _set(name, value): + global env_state + env_state[name] = value + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + return [line] + + +def _set_if_unset(name, value): + global env_state + line = FORMAT_STR_SET_ENV_VAR.format_map( + {'name': name, 'value': value}) + if env_state.get(name, os.environ.get(name)): + line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) + return [line] + + +if __name__ == '__main__': # pragma: no cover + try: + rc = main() + except RuntimeError as e: + print(str(e), file=sys.stderr) + rc = 1 + sys.exit(rc) diff --git a/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 b/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 new file mode 100644 index 0000000..25ce83a --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 @@ -0,0 +1 @@ +ament_lint_auto;ament_lint_common \ No newline at end of file diff --git a/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 b/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 b/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 new file mode 100644 index 0000000..6350bc1 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 @@ -0,0 +1 @@ +/opt/ros/humble \ No newline at end of file diff --git a/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2 b/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2 new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake new file mode 100644 index 0000000..7beb732 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake @@ -0,0 +1,14 @@ +# generated from ament/cmake/core/templates/nameConfig-version.cmake.in +set(PACKAGE_VERSION "0.0.0") + +set(PACKAGE_VERSION_EXACT False) +set(PACKAGE_VERSION_COMPATIBLE False) + +if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT True) + set(PACKAGE_VERSION_COMPATIBLE True) +endif() + +if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE True) +endif() diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake new file mode 100644 index 0000000..585c3ff --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake @@ -0,0 +1,42 @@ +# generated from ament/cmake/core/templates/nameConfig.cmake.in + +# prevent multiple inclusion +if(_hive_core_r2_CONFIG_INCLUDED) + # ensure to keep the found flag the same + if(NOT DEFINED hive_core_r2_FOUND) + # explicitly set it to FALSE, otherwise CMake will set it to TRUE + set(hive_core_r2_FOUND FALSE) + elseif(NOT hive_core_r2_FOUND) + # use separate condition to avoid uninitialized variable warning + set(hive_core_r2_FOUND FALSE) + endif() + return() +endif() +set(_hive_core_r2_CONFIG_INCLUDED TRUE) + +# output package information +if(NOT hive_core_r2_FIND_QUIETLY) + message(STATUS "Found hive_core_r2: 0.0.0 (${hive_core_r2_DIR})") +endif() + +# warn when using a deprecated package +if(NOT "" STREQUAL "") + set(_msg "Package 'hive_core_r2' is deprecated") + # append custom deprecation text if available + if(NOT "" STREQUAL "TRUE") + set(_msg "${_msg} ()") + endif() + # optionally quiet the deprecation message + if(NOT ${hive_core_r2_DEPRECATED_QUIET}) + message(DEPRECATION "${_msg}") + endif() +endif() + +# flag package as ament-based to distinguish it after being find_package()-ed +set(hive_core_r2_FOUND_AMENT_PACKAGE TRUE) + +# include all config extra files +set(_extras "") +foreach(_extra ${_extras}) + include("${hive_core_r2_DIR}/${_extra}") +endforeach() diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz new file mode 100644 index 0000000..d624b06 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz @@ -0,0 +1,170 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /RobotModel1 + Splitter Ratio: 0.5 + Tree Height: 480 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz_default_plugins/RobotModel + Collision Enabled: false + Description File: "" + Description Source: Topic + Description Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_description + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + imu_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Mass Properties: + Inertia: false + Mass: false + Name: RobotModel + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: base_link + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 0.4101419746875763 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.785398006439209 + Target Frame: + Value: Orbit (rviz) + Yaw: 0.785398006439209 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 777 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001560000026bfc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d0000026b000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f0000026bfc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003d0000026b000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000054a0000003efc0100000002fb0000000800540069006d006501000000000000054a000002fb00fffffffb0000000800540069006d00650100000000000004500000000000000000000002d90000026b00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1354 + X: 70 + Y: 27 diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv new file mode 100644 index 0000000..79d4c95 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh new file mode 100644 index 0000000..02e441b --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh @@ -0,0 +1,4 @@ +# copied from +# ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh + +ament_prepend_unique_value AMENT_PREFIX_PATH "$AMENT_CURRENT_PREFIX" diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv new file mode 100644 index 0000000..b94426a --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate-if-exists;PATH;bin diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh new file mode 100644 index 0000000..e59b749 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh @@ -0,0 +1,5 @@ +# copied from ament_cmake_core/cmake/environment_hooks/environment/path.sh + +if [ -d "$AMENT_CURRENT_PREFIX/bin" ]; then + ament_prepend_unique_value PATH "$AMENT_CURRENT_PREFIX/bin" +fi diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv new file mode 100644 index 0000000..e119f32 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv @@ -0,0 +1 @@ +prepend-non-duplicate;CMAKE_PREFIX_PATH; diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1 b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1 new file mode 100644 index 0000000..d03facc --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1 @@ -0,0 +1,3 @@ +# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em + +colcon_prepend_unique_value CMAKE_PREFIX_PATH "$env:COLCON_CURRENT_PREFIX" diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh new file mode 100644 index 0000000..a948e68 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh @@ -0,0 +1,3 @@ +# generated from colcon_core/shell/template/hook_prepend_value.sh.em + +_colcon_prepend_unique_value CMAKE_PREFIX_PATH "$COLCON_CURRENT_PREFIX" diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc new file mode 100644 index 0000000..e8614af Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py new file mode 100644 index 0000000..2561025 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py @@ -0,0 +1,42 @@ +import launch +import launch_ros +from ament_index_python.packages import get_package_share_directory + + +def generate_launch_description(): + # 获取默认路径 + urdf_tutorial_path = get_package_share_directory('hive_core_r2') + default_model_path = urdf_tutorial_path + '/urdf/HiveCoreR2.urdf.xacro' + default_rviz_config_path = urdf_tutorial_path + '/config/rviz/display_model.rviz' + # 为 Launch 声明参数 + action_declare_arg_mode_path = launch.actions.DeclareLaunchArgument( + name='model', default_value=str(default_model_path), + description='URDF 的绝对路径') + # 获取文件内容生成新的参数 + robot_description = launch_ros.parameter_descriptions.ParameterValue( + launch.substitutions.Command( + ['xacro ', launch.substitutions.LaunchConfiguration('model')]), + value_type=str) + # 状态发布节点 + robot_state_publisher_node = launch_ros.actions.Node( + package='robot_state_publisher', + executable='robot_state_publisher', + parameters=[{'robot_description': robot_description}] + ) + # 关节状态发布节点 + joint_state_publisher_node = launch_ros.actions.Node( + package='joint_state_publisher', + executable='joint_state_publisher', + ) + # RViz 节点 + rviz_node = launch_ros.actions.Node( + package='rviz2', + executable='rviz2', + arguments=['-d', default_rviz_config_path] + ) + return launch.LaunchDescription([ + action_declare_arg_mode_path, + joint_state_publisher_node, + robot_state_publisher_node, + rviz_node + ]) diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash new file mode 100644 index 0000000..49782f2 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash @@ -0,0 +1,46 @@ +# generated from ament_package/template/package_level/local_setup.bash.in + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv new file mode 100644 index 0000000..fc4e706 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv @@ -0,0 +1,2 @@ +source;share/hive_core_r2/environment/ament_prefix_path.sh +source;share/hive_core_r2/environment/path.sh diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh new file mode 100644 index 0000000..278cb88 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh @@ -0,0 +1,184 @@ +# generated from ament_package/template/package_level/local_setup.sh.in + +# since this file is sourced use either the provided AMENT_CURRENT_PREFIX +# or fall back to the destination set at configure time +: ${AMENT_CURRENT_PREFIX:="/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2"} +if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then + if [ -z "$COLCON_CURRENT_PREFIX" ]; then + echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \ + "exist. Consider sourcing a different extension than '.sh'." 1>&2 + else + AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" + fi +fi + +# function to append values to environment variables +# using colons as separators and avoiding leading separators +ament_append_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # avoid leading separator + eval _values=\"\$$_listname\" + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + _ament_append_value_IFS=$IFS + unset IFS + eval export $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + IFS=$_ament_append_value_IFS + unset _ament_append_value_IFS + fi + unset _values + + unset _value + unset _listname +} + +# function to append non-duplicate values to environment variables +# using colons as separators and avoiding leading separators +ament_append_unique_value() { + # arguments + _listname=$1 + _value=$2 + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\$$_listname + _duplicate= + _ament_append_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ $_item = $_value ]; then + _duplicate=1 + fi + done + unset _item + + # append only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid leading separator + if [ -z "$_values" ]; then + eval $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval $_listname=\"\$$_listname:$_value\" + #eval echo "append list \$$_listname" + fi + fi + IFS=$_ament_append_unique_value_IFS + unset _ament_append_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# function to prepend non-duplicate values to environment variables +# using colons as separators and avoiding trailing separators +ament_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + #echo "listname $_listname" + #eval echo "list value \$$_listname" + #echo "value $_value" + + # check if the list contains the value + eval _values=\"\$$_listname\" + _duplicate= + _ament_prepend_unique_value_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array _values + fi + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + if [ "$_item" = "$_value" ]; then + _duplicate=1 + fi + done + unset _item + + # prepend only non-duplicates + if [ -z "$_duplicate" ]; then + # avoid trailing separator + if [ -z "$_values" ]; then + eval export $_listname=\"$_value\" + #eval echo "set list \$$_listname" + else + # field separator must not be a colon + unset IFS + eval export $_listname=\"$_value:\$$_listname\" + #eval echo "prepend list \$$_listname" + fi + fi + IFS=$_ament_prepend_unique_value_IFS + unset _ament_prepend_unique_value_IFS + unset _duplicate + unset _values + + unset _value + unset _listname +} + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# list all environment hooks of this package +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/hive_core_r2/environment/ament_prefix_path.sh" +ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/hive_core_r2/environment/path.sh" + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + if [ "$AMENT_SHELL" = "zsh" ]; then + ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS + fi + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + if [ -f "$_hook" ]; then + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + # trace output + if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_hook\"" + fi + . "$_hook" + fi + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +# reset AMENT_CURRENT_PREFIX after each package +# allowing to source multiple package-level setup files +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh new file mode 100644 index 0000000..fe161be --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh @@ -0,0 +1,59 @@ +# generated from ament_package/template/package_level/local_setup.zsh.in + +AMENT_SHELL=zsh + +# source local_setup.sh from same directory as this file +_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd) +# provide AMENT_CURRENT_PREFIX to shell script +AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd) +# store AMENT_CURRENT_PREFIX to restore it before each environment hook +_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX + +# function to convert array-like strings into arrays +# to wordaround SH_WORD_SPLIT not being set +ament_zsh_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# trace output +if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then + echo "# . \"$_this_path/local_setup.sh\"" +fi +# the package-level local_setup file unsets AMENT_CURRENT_PREFIX +. "$_this_path/local_setup.sh" +unset _this_path + +# unset AMENT_ENVIRONMENT_HOOKS +# if not appending to them for return +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + unset AMENT_ENVIRONMENT_HOOKS +fi + +# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks +AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX +# list all environment hooks of this package + +# source all shell-specific environment hooks of this package +# if not returning them +if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then + _package_local_setup_IFS=$IFS + IFS=":" + for _hook in $AMENT_ENVIRONMENT_HOOKS; do + # restore AMENT_CURRENT_PREFIX for each environment hook + AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX + # restore IFS before sourcing other files + IFS=$_package_local_setup_IFS + . "$_hook" + done + unset _hook + IFS=$_package_local_setup_IFS + unset _package_local_setup_IFS + unset AMENT_ENVIRONMENT_HOOKS +fi + +unset _package_local_setup_AMENT_CURRENT_PREFIX +unset AMENT_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash new file mode 100644 index 0000000..20a047d --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash @@ -0,0 +1,39 @@ +# generated from colcon_bash/shell/template/package.bash.em + +# This script extends the environment for this package. + +# a bash script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + # the prefix is two levels up from the package specific share directory + _colcon_package_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." > /dev/null && pwd)" +else + _colcon_package_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_bash_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source sh script of this package +_colcon_package_bash_source_script "$_colcon_package_bash_COLCON_CURRENT_PREFIX/share/hive_core_r2/package.sh" + +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts +COLCON_CURRENT_PREFIX="$_colcon_package_bash_COLCON_CURRENT_PREFIX" + +# source bash hooks +_colcon_package_bash_source_script "$COLCON_CURRENT_PREFIX/share/hive_core_r2/local_setup.bash" + +unset COLCON_CURRENT_PREFIX + +unset _colcon_package_bash_source_script +unset _colcon_package_bash_COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv new file mode 100644 index 0000000..fcbe5bd --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv @@ -0,0 +1,8 @@ +source;share/hive_core_r2/hook/cmake_prefix_path.ps1 +source;share/hive_core_r2/hook/cmake_prefix_path.dsv +source;share/hive_core_r2/hook/cmake_prefix_path.sh +source;share/hive_core_r2/local_setup.bash +source;share/hive_core_r2/local_setup.dsv +source;share/hive_core_r2/local_setup.ps1 +source;share/hive_core_r2/local_setup.sh +source;share/hive_core_r2/local_setup.zsh diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1 b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1 new file mode 100644 index 0000000..40453df --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1 @@ -0,0 +1,116 @@ +# generated from colcon_powershell/shell/template/package.ps1.em + +# function to append a value to a variable +# which uses colons as separators +# duplicates as well as leading separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +function colcon_append_unique_value { + param ( + $_listname, + $_value + ) + + # get values from variable + if (Test-Path Env:$_listname) { + $_values=(Get-Item env:$_listname).Value + } else { + $_values="" + } + $_duplicate="" + # start with no values + $_all_values="" + # iterate over existing values in the variable + if ($_values) { + $_values.Split(";") | ForEach { + # not an empty string + if ($_) { + # not a duplicate of _value + if ($_ -eq $_value) { + $_duplicate="1" + } + if ($_all_values) { + $_all_values="${_all_values};$_" + } else { + $_all_values="$_" + } + } + } + } + # append only non-duplicates + if (!$_duplicate) { + # avoid leading separator + if ($_all_values) { + $_all_values="${_all_values};${_value}" + } else { + $_all_values="${_value}" + } + } + + # export the updated variable + Set-Item env:\$_listname -Value "$_all_values" +} + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +function colcon_prepend_unique_value { + param ( + $_listname, + $_value + ) + + # get values from variable + if (Test-Path Env:$_listname) { + $_values=(Get-Item env:$_listname).Value + } else { + $_values="" + } + # start with the new value + $_all_values="$_value" + # iterate over existing values in the variable + if ($_values) { + $_values.Split(";") | ForEach { + # not an empty string + if ($_) { + # not a duplicate of _value + if ($_ -ne $_value) { + # keep non-duplicate values + $_all_values="${_all_values};$_" + } + } + } + } + # export the updated variable + Set-Item env:\$_listname -Value "$_all_values" +} + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +function colcon_package_source_powershell_script { + param ( + $_colcon_package_source_powershell_script + ) + # source script with conditional trace output + if (Test-Path $_colcon_package_source_powershell_script) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_package_source_powershell_script'" + } + . "$_colcon_package_source_powershell_script" + } else { + Write-Error "not found: '$_colcon_package_source_powershell_script'" + } +} + + +# a powershell script is able to determine its own path +# the prefix is two levels up from the package specific share directory +$env:COLCON_CURRENT_PREFIX=(Get-Item $PSCommandPath).Directory.Parent.Parent.FullName + +colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/hive_core_r2/hook/cmake_prefix_path.ps1" +colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/hive_core_r2/local_setup.ps1" + +Remove-Item Env:\COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh new file mode 100644 index 0000000..4d8df2c --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh @@ -0,0 +1,87 @@ +# generated from colcon_core/shell/template/package.sh.em + +# This script extends the environment for this package. + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prepend_unique_value_IFS=$IFS + IFS=":" + # start with the new value + _all_values="$_value" + # workaround SH_WORD_SPLIT not being set in zsh + if [ "$(command -v colcon_zsh_convert_to_array)" ]; then + colcon_zsh_convert_to_array _values + fi + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + # restore the field separator + IFS=$_colcon_prepend_unique_value_IFS + unset _colcon_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_package_sh_COLCON_CURRENT_PREFIX="/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2" +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + if [ ! -d "$_colcon_package_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_package_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_package_sh_COLCON_CURRENT_PREFIX + return 1 + fi + COLCON_CURRENT_PREFIX="$_colcon_package_sh_COLCON_CURRENT_PREFIX" +fi +unset _colcon_package_sh_COLCON_CURRENT_PREFIX + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source sh hooks +_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/hive_core_r2/hook/cmake_prefix_path.sh" +_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/hive_core_r2/local_setup.sh" + +unset _colcon_package_sh_source_script +unset COLCON_CURRENT_PREFIX + +# do not unset _colcon_prepend_unique_value since it might be used by non-primary shell hooks diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml new file mode 100644 index 0000000..de099f8 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml @@ -0,0 +1,18 @@ + + + + hive_core_r2 + 0.0.0 + TODO: Package description + hivecore + Apache-2.0 + + ament_cmake + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh new file mode 100644 index 0000000..e0cb9ef --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh @@ -0,0 +1,50 @@ +# generated from colcon_zsh/shell/template/package.zsh.em + +# This script extends the environment for this package. + +# a zsh script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + # the prefix is two levels up from the package specific share directory + _colcon_package_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd)" +else + _colcon_package_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +# additional arguments: arguments to the script +_colcon_package_zsh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$@" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# function to convert array-like strings into arrays +# to workaround SH_WORD_SPLIT not being set +colcon_zsh_convert_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# source sh script of this package +_colcon_package_zsh_source_script "$_colcon_package_zsh_COLCON_CURRENT_PREFIX/share/hive_core_r2/package.sh" +unset convert_zsh_to_array + +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts +COLCON_CURRENT_PREFIX="$_colcon_package_zsh_COLCON_CURRENT_PREFIX" + +# source zsh hooks +_colcon_package_zsh_source_script "$COLCON_CURRENT_PREFIX/share/hive_core_r2/local_setup.zsh" + +unset COLCON_CURRENT_PREFIX + +unset _colcon_package_zsh_source_script +unset _colcon_package_zsh_COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf new file mode 100644 index 0000000..b3c5f06 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf @@ -0,0 +1,683 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro new file mode 100644 index 0000000..a5de029 --- /dev/null +++ b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL new file mode 100644 index 0000000..de18524 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL new file mode 100644 index 0000000..fcf6527 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL new file mode 100644 index 0000000..3cd4284 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL new file mode 100644 index 0000000..b384b50 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL new file mode 100644 index 0000000..74fdaf7 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL new file mode 100644 index 0000000..b94d7da Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL new file mode 100644 index 0000000..9f44f6b Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL new file mode 100644 index 0000000..9f54bfb Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL new file mode 100644 index 0000000..8ff1a9a Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL new file mode 100644 index 0000000..1da1c86 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL new file mode 100644 index 0000000..669941f Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL new file mode 100644 index 0000000..bc695b2 Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL differ diff --git a/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL new file mode 100644 index 0000000..117c24a Binary files /dev/null and b/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL differ diff --git a/HiveCoreR2/install/local_setup.bash b/HiveCoreR2/install/local_setup.bash new file mode 100644 index 0000000..03f0025 --- /dev/null +++ b/HiveCoreR2/install/local_setup.bash @@ -0,0 +1,121 @@ +# generated from colcon_bash/shell/template/prefix.bash.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# a bash script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" +else + _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_bash_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_bash_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_bash_prepend_unique_value_IFS" + unset _colcon_prefix_bash_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_bash_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_bash_prepend_unique_value + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh bash)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "$(declare -f _colcon_prefix_sh_source_script)" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_bash_COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/local_setup.ps1 b/HiveCoreR2/install/local_setup.ps1 new file mode 100644 index 0000000..6f68c8d --- /dev/null +++ b/HiveCoreR2/install/local_setup.ps1 @@ -0,0 +1,55 @@ +# generated from colcon_powershell/shell/template/prefix.ps1.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# check environment variable for custom Python executable +if ($env:COLCON_PYTHON_EXECUTABLE) { + if (!(Test-Path "$env:COLCON_PYTHON_EXECUTABLE" -PathType Leaf)) { + echo "error: COLCON_PYTHON_EXECUTABLE '$env:COLCON_PYTHON_EXECUTABLE' doesn't exist" + exit 1 + } + $_colcon_python_executable="$env:COLCON_PYTHON_EXECUTABLE" +} else { + # use the Python executable known at configure time + $_colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if (!(Test-Path "$_colcon_python_executable" -PathType Leaf)) { + if (!(Get-Command "python3" -ErrorAction SilentlyContinue)) { + echo "error: unable to find python3 executable" + exit 1 + } + $_colcon_python_executable="python3" + } +} + +# function to source another script with conditional trace output +# first argument: the path of the script +function _colcon_prefix_powershell_source_script { + param ( + $_colcon_prefix_powershell_source_script_param + ) + # source script with conditional trace output + if (Test-Path $_colcon_prefix_powershell_source_script_param) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_prefix_powershell_source_script_param'" + } + . "$_colcon_prefix_powershell_source_script_param" + } else { + Write-Error "not found: '$_colcon_prefix_powershell_source_script_param'" + } +} + +# get all commands in topological order +$_colcon_ordered_commands = & "$_colcon_python_executable" "$(Split-Path $PSCommandPath -Parent)/_local_setup_util_ps1.py" ps1 + +# execute all commands in topological order +if ($env:COLCON_TRACE) { + echo "Execute generated script:" + echo "<<<" + $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Write-Output + echo ">>>" +} +if ($_colcon_ordered_commands) { + $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Invoke-Expression +} diff --git a/HiveCoreR2/install/local_setup.sh b/HiveCoreR2/install/local_setup.sh new file mode 100644 index 0000000..c5c6676 --- /dev/null +++ b/HiveCoreR2/install/local_setup.sh @@ -0,0 +1,137 @@ +# generated from colcon_core/shell/template/prefix.sh.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_prefix_sh_COLCON_CURRENT_PREFIX="/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install" +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + if [ ! -d "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_prefix_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX + return 1 + fi +else + _colcon_prefix_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_sh_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_sh_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_sh_prepend_unique_value_IFS" + unset _colcon_prefix_sh_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_sh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_sh_prepend_unique_value + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "_colcon_prefix_sh_source_script() { + if [ -f \"\$1\" ]; then + if [ -n \"\$COLCON_TRACE\" ]; then + echo \"# . \\\"\$1\\\"\" + fi + . \"\$1\" + else + echo \"not found: \\\"\$1\\\"\" 1>&2 + fi + }" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/local_setup.zsh b/HiveCoreR2/install/local_setup.zsh new file mode 100644 index 0000000..b648710 --- /dev/null +++ b/HiveCoreR2/install/local_setup.zsh @@ -0,0 +1,134 @@ +# generated from colcon_zsh/shell/template/prefix.zsh.em + +# This script extends the environment with all packages contained in this +# prefix path. + +# a zsh script is able to determine its own path if necessary +if [ -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" +else + _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +fi + +# function to convert array-like strings into arrays +# to workaround SH_WORD_SPLIT not being set +_colcon_prefix_zsh_convert_to_array() { + local _listname=$1 + local _dollar="$" + local _split="{=" + local _to_array="(\"$_dollar$_split$_listname}\")" + eval $_listname=$_to_array +} + +# function to prepend a value to a variable +# which uses colons as separators +# duplicates as well as trailing separators are avoided +# first argument: the name of the result variable +# second argument: the value to be prepended +_colcon_prefix_zsh_prepend_unique_value() { + # arguments + _listname="$1" + _value="$2" + + # get values from variable + eval _values=\"\$$_listname\" + # backup the field separator + _colcon_prefix_zsh_prepend_unique_value_IFS="$IFS" + IFS=":" + # start with the new value + _all_values="$_value" + _contained_value="" + # workaround SH_WORD_SPLIT not being set + _colcon_prefix_zsh_convert_to_array _values + # iterate over existing values in the variable + for _item in $_values; do + # ignore empty strings + if [ -z "$_item" ]; then + continue + fi + # ignore duplicates of _value + if [ "$_item" = "$_value" ]; then + _contained_value=1 + continue + fi + # keep non-duplicate values + _all_values="$_all_values:$_item" + done + unset _item + if [ -z "$_contained_value" ]; then + if [ -n "$COLCON_TRACE" ]; then + if [ "$_all_values" = "$_value" ]; then + echo "export $_listname=$_value" + else + echo "export $_listname=$_value:\$$_listname" + fi + fi + fi + unset _contained_value + # restore the field separator + IFS="$_colcon_prefix_zsh_prepend_unique_value_IFS" + unset _colcon_prefix_zsh_prepend_unique_value_IFS + # export the updated variable + eval export $_listname=\"$_all_values\" + unset _all_values + unset _values + + unset _value + unset _listname +} + +# add this prefix to the COLCON_PREFIX_PATH +_colcon_prefix_zsh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX" +unset _colcon_prefix_zsh_prepend_unique_value +unset _colcon_prefix_zsh_convert_to_array + +# check environment variable for custom Python executable +if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then + if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then + echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" + return 1 + fi + _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" +else + # try the Python executable known at configure time + _colcon_python_executable="/usr/bin/python3" + # if it doesn't exist try a fall back + if [ ! -f "$_colcon_python_executable" ]; then + if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then + echo "error: unable to find python3 executable" + return 1 + fi + _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` + fi +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# get all commands in topological order +_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh zsh)" +unset _colcon_python_executable +if [ -n "$COLCON_TRACE" ]; then + echo "$(declare -f _colcon_prefix_sh_source_script)" + echo "# Execute generated script:" + echo "# <<<" + echo "${_colcon_ordered_commands}" + echo "# >>>" + echo "unset _colcon_prefix_sh_source_script" +fi +eval "${_colcon_ordered_commands}" +unset _colcon_ordered_commands + +unset _colcon_prefix_sh_source_script + +unset _colcon_prefix_zsh_COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/setup.bash b/HiveCoreR2/install/setup.bash new file mode 100644 index 0000000..10ea0f7 --- /dev/null +++ b/HiveCoreR2/install/setup.bash @@ -0,0 +1,31 @@ +# generated from colcon_bash/shell/template/prefix_chain.bash.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_bash_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" +_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" + +unset COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_bash_source_script diff --git a/HiveCoreR2/install/setup.ps1 b/HiveCoreR2/install/setup.ps1 new file mode 100644 index 0000000..558e9b9 --- /dev/null +++ b/HiveCoreR2/install/setup.ps1 @@ -0,0 +1,29 @@ +# generated from colcon_powershell/shell/template/prefix_chain.ps1.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +function _colcon_prefix_chain_powershell_source_script { + param ( + $_colcon_prefix_chain_powershell_source_script_param + ) + # source script with conditional trace output + if (Test-Path $_colcon_prefix_chain_powershell_source_script_param) { + if ($env:COLCON_TRACE) { + echo ". '$_colcon_prefix_chain_powershell_source_script_param'" + } + . "$_colcon_prefix_chain_powershell_source_script_param" + } else { + Write-Error "not found: '$_colcon_prefix_chain_powershell_source_script_param'" + } +} + +# source chained prefixes +_colcon_prefix_chain_powershell_source_script "/opt/ros/humble\local_setup.ps1" + +# source this prefix +$env:COLCON_CURRENT_PREFIX=(Split-Path $PSCommandPath -Parent) +_colcon_prefix_chain_powershell_source_script "$env:COLCON_CURRENT_PREFIX\local_setup.ps1" diff --git a/HiveCoreR2/install/setup.sh b/HiveCoreR2/install/setup.sh new file mode 100644 index 0000000..58b62c6 --- /dev/null +++ b/HiveCoreR2/install/setup.sh @@ -0,0 +1,45 @@ +# generated from colcon_core/shell/template/prefix_chain.sh.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# since a plain shell script can't determine its own path when being sourced +# either use the provided COLCON_CURRENT_PREFIX +# or fall back to the build time prefix (if it exists) +_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +if [ ! -z "$COLCON_CURRENT_PREFIX" ]; then + _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" +elif [ ! -d "$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" ]; then + echo "The build time path \"$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 + unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX + return 1 +fi + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_sh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" + + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script +COLCON_CURRENT_PREFIX="$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" +_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" + +unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_sh_source_script +unset COLCON_CURRENT_PREFIX diff --git a/HiveCoreR2/install/setup.zsh b/HiveCoreR2/install/setup.zsh new file mode 100644 index 0000000..54799fd --- /dev/null +++ b/HiveCoreR2/install/setup.zsh @@ -0,0 +1,31 @@ +# generated from colcon_zsh/shell/template/prefix_chain.zsh.em + +# This script extends the environment with the environment of other prefix +# paths which were sourced when this file was generated as well as all packages +# contained in this prefix path. + +# function to source another script with conditional trace output +# first argument: the path of the script +_colcon_prefix_chain_zsh_source_script() { + if [ -f "$1" ]; then + if [ -n "$COLCON_TRACE" ]; then + echo "# . \"$1\"" + fi + . "$1" + else + echo "not found: \"$1\"" 1>&2 + fi +} + +# source chained prefixes +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="/opt/ros/humble" +_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" + +# source this prefix +# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script +COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" +_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" + +unset COLCON_CURRENT_PREFIX +unset _colcon_prefix_chain_zsh_source_script diff --git a/HiveCoreR2/log/COLCON_IGNORE b/HiveCoreR2/log/COLCON_IGNORE new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/events.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/events.log new file mode 100644 index 0000000..e30abf3 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/events.log @@ -0,0 +1,80 @@ +[0.000000] (-) TimerEvent: {} +[0.000267] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000656] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.004649] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004917] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', '-DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.098113] (hive_core_r2) StdoutLine: {'line': b'-- The C compiler identification is GNU 11.4.0\n'} +[0.100050] (-) TimerEvent: {} +[0.159357] (hive_core_r2) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 11.4.0\n'} +[0.169429] (hive_core_r2) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} +[0.200170] (-) TimerEvent: {} +[0.240100] (hive_core_r2) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} +[0.260253] (hive_core_r2) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} +[0.260486] (hive_core_r2) StdoutLine: {'line': b'-- Detecting C compile features\n'} +[0.261081] (hive_core_r2) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} +[0.277663] (hive_core_r2) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} +[0.300273] (-) TimerEvent: {} +[0.343115] (hive_core_r2) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} +[0.351823] (hive_core_r2) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} +[0.352080] (hive_core_r2) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} +[0.352510] (hive_core_r2) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} +[0.358670] (hive_core_r2) StdoutLine: {'line': b'-- Found ament_cmake: 1.3.12 (/opt/ros/humble/share/ament_cmake/cmake)\n'} +[0.400369] (-) TimerEvent: {} +[0.466103] (hive_core_r2) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter\n'} +[0.500527] (-) TimerEvent: {} +[0.515292] (hive_core_r2) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.12.14 (/opt/ros/humble/share/ament_lint_auto/cmake)\n'} +[0.551721] (hive_core_r2) StdoutLine: {'line': b"-- Added test 'flake8' to check Python code syntax and style conventions\n"} +[0.551974] (hive_core_r2) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} +[0.552191] (hive_core_r2) StdoutLine: {'line': b"-- Added test 'pep257' to check Python code against some of the docstring style conventions in PEP 257\n"} +[0.552655] (hive_core_r2) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} +[0.553066] (hive_core_r2) StdoutLine: {'line': b'-- Configuring done (0.5s)\n'} +[0.554599] (hive_core_r2) StdoutLine: {'line': b'-- Generating done (0.0s)\n'} +[0.554989] (hive_core_r2) StdoutLine: {'line': b'-- Build files have been written to: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2\n'} +[0.557666] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.558344] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.558356] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.600702] (-) TimerEvent: {} +[0.604706] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.605190] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.647612] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.685745] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.685971] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.686017] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.686039] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.686059] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.686077] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.686107] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.686125] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.686280] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.686329] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.686482] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.686513] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.686533] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.686552] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.686570] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.686613] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.686715] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.686780] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.686860] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.686933] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.686998] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.687066] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.687173] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.687272] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.687369] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.687441] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.687512] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.687581] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.687652] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.687721] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.687797] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.687867] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.687938] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.688028] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.688117] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.688176] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.688242] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.689113] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.700808] (-) TimerEvent: {} +[0.706943] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.707422] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/command.log new file mode 100644 index 0000000..e826c4b --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/command.log @@ -0,0 +1,6 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout.log new file mode 100644 index 0000000..2fa5eea --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout.log @@ -0,0 +1,59 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.12 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found ament_lint_auto: 0.12.14 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Added test 'flake8' to check Python code syntax and style conventions +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'pep257' to check Python code against some of the docstring style conventions in PEP 257 +-- Added test 'xmllint' to check XML markup files +-- Configuring done (0.5s) +-- Generating done (0.0s) +-- Build files have been written to: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +-- Install configuration: "" +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..2fa5eea --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/stdout_stderr.log @@ -0,0 +1,59 @@ +-- The C compiler identification is GNU 11.4.0 +-- The CXX compiler identification is GNU 11.4.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Found ament_cmake: 1.3.12 (/opt/ros/humble/share/ament_cmake/cmake) +-- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +-- Found ament_lint_auto: 0.12.14 (/opt/ros/humble/share/ament_lint_auto/cmake) +-- Added test 'flake8' to check Python code syntax and style conventions +-- Added test 'lint_cmake' to check CMake code style +-- Added test 'pep257' to check Python code against some of the docstring style conventions in PEP 257 +-- Added test 'xmllint' to check XML markup files +-- Configuring done (0.5s) +-- Generating done (0.0s) +-- Build files have been written to: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +-- Install configuration: "" +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/streams.log new file mode 100644 index 0000000..7221e09 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/hive_core_r2/streams.log @@ -0,0 +1,65 @@ +[0.005s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +[0.098s] -- The C compiler identification is GNU 11.4.0 +[0.159s] -- The CXX compiler identification is GNU 11.4.0 +[0.169s] -- Detecting C compiler ABI info +[0.240s] -- Detecting C compiler ABI info - done +[0.260s] -- Check for working C compiler: /usr/bin/cc - skipped +[0.260s] -- Detecting C compile features +[0.260s] -- Detecting C compile features - done +[0.277s] -- Detecting CXX compiler ABI info +[0.343s] -- Detecting CXX compiler ABI info - done +[0.351s] -- Check for working CXX compiler: /usr/bin/c++ - skipped +[0.351s] -- Detecting CXX compile features +[0.352s] -- Detecting CXX compile features - done +[0.358s] -- Found ament_cmake: 1.3.12 (/opt/ros/humble/share/ament_cmake/cmake) +[0.466s] -- Found Python3: /usr/bin/python3 (found version "3.10.12") found components: Interpreter +[0.515s] -- Found ament_lint_auto: 0.12.14 (/opt/ros/humble/share/ament_lint_auto/cmake) +[0.551s] -- Added test 'flake8' to check Python code syntax and style conventions +[0.551s] -- Added test 'lint_cmake' to check CMake code style +[0.552s] -- Added test 'pep257' to check Python code against some of the docstring style conventions in PEP 257 +[0.552s] -- Added test 'xmllint' to check XML markup files +[0.552s] -- Configuring done (0.5s) +[0.554s] -- Generating done (0.0s) +[0.554s] -- Build files have been written to: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.558s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +[0.558s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.604s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.647s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.685s] -- Install configuration: "" +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.685s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.686s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.687s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.688s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.688s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.689s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-37-24/logger_all.log b/HiveCoreR2/log/build_2025-07-25_14-37-24/logger_all.log new file mode 100644 index 0000000..0e7057c --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-37-24/logger_all.log @@ -0,0 +1,142 @@ +[0.046s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.046s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.109s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.109s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.110s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.116s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.129s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.129s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.130s] WARNING:colcon.colcon_ros.prefix_path.catkin:The path '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' in the environment variable CMAKE_PREFIX_PATH doesn't exist +[0.130s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 0 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.131s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.131s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.150s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.151s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.151s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.152s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.152s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.152s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.152s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.152s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.152s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.156s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +[0.709s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2 -DCMAKE_INSTALL_PREFIX=/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2 +[0.710s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.756s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.799s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.840s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.840s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.842s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.842s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.842s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.843s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.843s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.843s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.844s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.844s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.844s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.844s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.845s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.845s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.846s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.846s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.847s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.847s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.848s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.848s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.848s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.848s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.848s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.849s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.849s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.849s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.849s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.849s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.849s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.850s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.850s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.857s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.857s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.858s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.858s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.858s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.858s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.858s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.858s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.862s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.862s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.862s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.882s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.883s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.884s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.886s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.887s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.887s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.888s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.889s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.890s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.891s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.891s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/events.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/events.log new file mode 100644 index 0000000..41b711c --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/events.log @@ -0,0 +1,50 @@ +[0.000000] (-) TimerEvent: {} +[0.000109] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000144] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.003756] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004145] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.004653] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.061129] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.062471] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.099706] (-) TimerEvent: {} +[0.108442] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.149753] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.149872] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.149903] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.150039] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.150086] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.150110] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.150130] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.150149] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.150168] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.150186] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.150205] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.150224] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.150242] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.150259] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.150277] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.150294] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.150313] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.150331] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.150349] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.150369] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.150387] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.150404] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.150421] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.150480] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.150529] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.150552] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.150572] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.150592] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.150613] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.150632] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.150656] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.150676] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.150695] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.150725] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.150745] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.150764] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.150783] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.151368] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.160999] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.161274] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/command.log new file mode 100644 index 0000000..49a4c78 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout.log new file mode 100644 index 0000000..c782b50 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout.log @@ -0,0 +1,37 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..c782b50 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/stdout_stderr.log @@ -0,0 +1,37 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/streams.log new file mode 100644 index 0000000..765c301 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/hive_core_r2/streams.log @@ -0,0 +1,41 @@ +[0.005s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.062s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.109s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.150s] -- Install configuration: "" +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.150s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.151s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-41-32/logger_all.log b/HiveCoreR2/log/build_2025-07-25_14-41-32/logger_all.log new file mode 100644 index 0000000..0a0072d --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-41-32/logger_all.log @@ -0,0 +1,139 @@ +[0.049s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.049s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.112s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.112s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.112s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.112s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.112s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.113s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.117s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.119s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.119s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.119s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.119s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.119s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.119s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.130s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.130s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.131s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 1 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.132s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.133s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.151s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.151s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.151s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.152s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.152s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.152s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.153s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.153s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.153s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.157s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.214s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.261s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.303s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.304s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.306s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.306s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.306s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.306s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.307s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.307s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.307s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.307s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.308s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.308s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.308s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.309s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.309s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.309s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.310s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.310s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.311s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.311s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.311s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.311s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.312s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.312s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.313s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.313s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.313s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.313s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.313s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.315s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.315s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.315s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.324s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.324s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.325s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.326s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.327s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.327s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.328s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.328s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.329s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.330s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.331s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/events.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/events.log new file mode 100644 index 0000000..bd2dbbc --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/events.log @@ -0,0 +1,51 @@ +[0.000000] (-) TimerEvent: {} +[0.000247] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000309] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.003983] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004148] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.004441] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.060907] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.061529] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.098321] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.099799] (-) TimerEvent: {} +[0.132225] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.132474] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.132532] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.132681] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.132751] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.132800] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.132846] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.132891] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.132935] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.133073] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.133130] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.133179] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.133227] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.133271] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.133316] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.133362] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.133409] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.133455] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.133502] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.133582] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.133848] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.133899] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro\n'} +[0.134011] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.134221] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.134270] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.134368] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.134418] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.134465] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.134511] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.134558] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.134607] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.134973] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.135020] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.135164] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.135210] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.135257] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.135303] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.135349] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.135396] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.152249] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.152851] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/command.log new file mode 100644 index 0000000..49a4c78 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout.log new file mode 100644 index 0000000..27e0ab6 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout.log @@ -0,0 +1,38 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..27e0ab6 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/stdout_stderr.log @@ -0,0 +1,38 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/streams.log new file mode 100644 index 0000000..a603aad --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/hive_core_r2/streams.log @@ -0,0 +1,42 @@ +[0.005s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.061s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.099s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.132s] -- Install configuration: "" +[0.132s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.132s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.132s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.132s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.133s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.134s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.134s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.135s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.135s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.135s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-52-13/logger_all.log b/HiveCoreR2/log/build_2025-07-25_14-52-13/logger_all.log new file mode 100644 index 0000000..7141bd7 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-52-13/logger_all.log @@ -0,0 +1,139 @@ +[0.049s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.049s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.115s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.121s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.135s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 1 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.136s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.137s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.156s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.156s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.157s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.157s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.157s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.158s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.158s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.158s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.162s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.218s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.256s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.292s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.292s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.294s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.294s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.294s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.295s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.295s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.295s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.296s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.297s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.297s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.298s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.298s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.299s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.299s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.299s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.299s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.299s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.300s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.305s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.305s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.306s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.306s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.306s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.306s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.307s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.307s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.308s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.308s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.309s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.309s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.309s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.310s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.310s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.315s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.315s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.315s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.329s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.329s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.331s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.332s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.333s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.334s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.334s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.335s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.335s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.336s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.336s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/events.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/events.log new file mode 100644 index 0000000..59cc502 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/events.log @@ -0,0 +1,53 @@ +[0.000000] (-) TimerEvent: {} +[0.000140] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000164] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.003868] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004129] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.004598] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.050283] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.051395] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.094359] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.099800] (-) TimerEvent: {} +[0.128053] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.128351] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.128393] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.128417] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.128438] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.128458] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.128476] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.128496] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.128516] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.128535] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.128554] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.128573] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.128592] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.128611] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.128629] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.128649] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.128670] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.128792] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.128839] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.128866] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.128921] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.128944] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro\n'} +[0.128964] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.128984] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz\n'} +[0.129005] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz\n'} +[0.129029] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.129049] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.129069] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.129089] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.129108] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.129127] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.129147] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.129166] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.129187] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.129206] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.129225] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.129244] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.129263] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.129290] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.129369] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.129749] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.138251] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.138569] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/command.log new file mode 100644 index 0000000..49a4c78 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout.log new file mode 100644 index 0000000..64a2d9e --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..64a2d9e --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/stdout_stderr.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/streams.log new file mode 100644 index 0000000..4aca544 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/hive_core_r2/streams.log @@ -0,0 +1,44 @@ +[0.005s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.050s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.094s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.128s] -- Install configuration: "" +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.128s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.128s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.128s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.129s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +[0.129s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.129s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.129s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.130s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-54-35/logger_all.log b/HiveCoreR2/log/build_2025-07-25_14-54-35/logger_all.log new file mode 100644 index 0000000..de18123 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-54-35/logger_all.log @@ -0,0 +1,139 @@ +[0.052s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.052s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.118s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.118s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.118s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.123s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.124s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.125s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.125s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.125s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.125s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.125s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.125s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.137s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.137s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.138s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 1 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.138s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.139s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.158s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.158s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.159s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.159s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.159s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.159s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.160s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.160s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.160s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.164s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.210s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.254s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.289s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.289s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.291s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.291s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.291s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.291s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.292s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.292s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.293s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.293s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.293s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.293s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.293s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.293s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.294s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.294s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.294s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.294s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.295s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.295s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.295s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.295s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.295s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.296s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.296s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.296s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.297s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.297s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.297s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.297s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.297s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.297s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.297s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.298s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.298s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.298s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.300s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.300s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.300s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.308s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.308s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.309s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.310s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.310s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.311s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.311s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.312s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.312s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.313s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.314s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/events.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/events.log new file mode 100644 index 0000000..51483ea --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/events.log @@ -0,0 +1,53 @@ +[0.000000] (-) TimerEvent: {} +[0.000112] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000163] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.003925] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004339] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.004872] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.060568] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.061510] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.099661] (-) TimerEvent: {} +[0.106378] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.148582] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.148846] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.148906] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.148955] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.149002] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.149108] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.149157] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.149205] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.149253] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.149301] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.149348] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.149395] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.149480] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.149525] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.149568] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.149611] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.149654] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.149700] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.149746] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.149821] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.149868] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.149915] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro\n'} +[0.149961] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.150007] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz\n'} +[0.150053] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz\n'} +[0.150149] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.150200] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.150248] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.150294] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.150340] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.150386] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.150436] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.150482] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.150673] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.150757] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.150818] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.150891] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.150975] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.151022] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.151090] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.151408] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.163963] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.164649] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/command.log new file mode 100644 index 0000000..49a4c78 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout.log new file mode 100644 index 0000000..484f938 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..484f938 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/stdout_stderr.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/streams.log new file mode 100644 index 0000000..aea0769 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/hive_core_r2/streams.log @@ -0,0 +1,44 @@ +[0.006s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.061s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.106s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.149s] -- Install configuration: "" +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.149s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.150s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.150s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.151s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.151s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.152s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_14-57-21/logger_all.log b/HiveCoreR2/log/build_2025-07-25_14-57-21/logger_all.log new file mode 100644 index 0000000..3b97458 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_14-57-21/logger_all.log @@ -0,0 +1,139 @@ +[0.049s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.049s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.115s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.115s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.115s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.122s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.135s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 1 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.136s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.137s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.156s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.156s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.156s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.157s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.157s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.157s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.158s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.158s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.158s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.163s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.218s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.264s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.308s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.309s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.310s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.310s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.311s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.311s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.311s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.312s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.312s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.312s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.313s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.313s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.313s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.313s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.313s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.314s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.318s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.318s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.318s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.319s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.319s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.319s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.319s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.319s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.320s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.320s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.320s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.321s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.321s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.321s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.321s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.321s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.326s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.326s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.326s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.338s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.338s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.339s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.340s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.340s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.341s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.341s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.341s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.342s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.342s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.342s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/events.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/events.log new file mode 100644 index 0000000..bc26907 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/events.log @@ -0,0 +1,53 @@ +[0.000000] (-) TimerEvent: {} +[0.000116] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000160] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.014419] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.014780] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.015321] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.067226] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.067705] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.099717] (-) TimerEvent: {} +[0.105924] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('ROS_PACKAGE_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '2'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('OLDPWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('DBUS_STARTER_BUS_TYPE', 'session'), ('SYSTEMD_EXEC_PID', '2228'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('COLORTERM', 'truecolor'), ('IM_CONFIG_PHASE', '1'), ('COLCON_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('PKG_CONFIG_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/x86_64-linux-gnu/pkgconfig:/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('GNOME_TERMINAL_SCREEN', '/org/gnome/Terminal/screen/b67c7915_4fd4_4ef3_8119_4de739e1ff9d'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('GNOME_TERMINAL_SERVICE', ':1.112'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('DBUS_STARTER_ADDRESS', 'unix:path=/run/user/1000/bus,guid=82a8ac357147818fab17d71d68821655'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('VTE_VERSION', '6800'), ('CMAKE_PREFIX_PATH', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2:/opt/ros/humble')]), 'shell': False} +[0.141240] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.141501] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.141557] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.141606] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.141659] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.141709] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.141754] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.141803] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.141847] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.141892] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.141936] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.141983] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.142030] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.142077] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.142124] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.142170] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.142217] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.142263] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.142310] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.142386] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.142434] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.142482] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro\n'} +[0.142529] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.142576] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz\n'} +[0.142622] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz\n'} +[0.142722] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.142785] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.142830] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.142875] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.142921] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.142966] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.143013] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.143060] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.143179] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.143241] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.143288] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.143335] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.143382] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.143429] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.143476] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.143965] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.156552] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.157501] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/command.log new file mode 100644 index 0000000..49a4c78 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout.log new file mode 100644 index 0000000..2e7c248 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..2e7c248 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/stdout_stderr.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/streams.log new file mode 100644 index 0000000..9781105 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/hive_core_r2/streams.log @@ -0,0 +1,44 @@ +[0.016s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.067s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.106s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.141s] -- Install configuration: "" +[0.141s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.141s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.141s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.142s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +[0.142s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.143s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.143s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.144s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_15-00-29/logger_all.log b/HiveCoreR2/log/build_2025-07-25_15-00-29/logger_all.log new file mode 100644 index 0000000..4872f51 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-00-29/logger_all.log @@ -0,0 +1,139 @@ +[0.049s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.049s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.116s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.116s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.116s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.121s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.122s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.122s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.136s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 1 installed packages in /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install +[0.136s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.137s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.157s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.157s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.157s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.157s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.157s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.157s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.158s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.158s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.158s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.174s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.225s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.264s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.301s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.302s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.303s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.303s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.304s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.304s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.304s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.304s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.305s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.305s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.306s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.306s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.307s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.307s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.307s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.308s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.308s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.308s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.308s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.308s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.310s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.310s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.311s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.312s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.312s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.313s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.314s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.314s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.314s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.314s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.314s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.321s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.321s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.321s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.336s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.336s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.338s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.340s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.341s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.341s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.342s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.344s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.344s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.346s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.347s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/events.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/events.log new file mode 100644 index 0000000..e999439 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/events.log @@ -0,0 +1,54 @@ +[0.000000] (-) TimerEvent: {} +[0.000327] (hive_core_r2) JobQueued: {'identifier': 'hive_core_r2', 'dependencies': OrderedDict()} +[0.000384] (hive_core_r2) JobStarted: {'identifier': 'hive_core_r2'} +[0.004122] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'cmake'} +[0.004536] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'build'} +[0.005037] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--build', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', '--', '-j32', '-l32'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('GJS_DEBUG_TOPICS', 'JS ERROR;JS LOG'), ('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '1'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('GIO_LAUNCHED_DESKTOP_FILE', '/usr/share/applications/code.desktop'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('MANAGERPID', '1976'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('SYSTEMD_EXEC_PID', '2256'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus'), ('COLORTERM', 'truecolor'), ('GIO_LAUNCHED_DESKTOP_FILE_PID', '63813'), ('IM_CONFIG_PHASE', '1'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('JOURNAL_STREAM', '8:4766'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/home/hivecore/.local/bin:/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('INVOCATION_ID', '0360bd67df414a9e9de83e899b97036d'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('GJS_DEBUG_OUTPUT', 'stderr'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.050475] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.051169] (hive_core_r2) JobProgress: {'identifier': 'hive_core_r2', 'progress': 'install'} +[0.099969] (-) TimerEvent: {} +[0.105567] (hive_core_r2) Command: {'cmd': ['/home/hivecore/.local/bin/cmake', '--install', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'], 'cwd': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'env': OrderedDict([('GJS_DEBUG_TOPICS', 'JS ERROR;JS LOG'), ('LESSOPEN', '| /usr/bin/lesspipe %s'), ('USER', 'hivecore'), ('LC_TIME', 'zh_CN.UTF-8'), ('XDG_SESSION_TYPE', 'x11'), ('GIT_ASKPASS', '/usr/share/code/resources/app/extensions/git/dist/askpass.sh'), ('SHLVL', '1'), ('LD_LIBRARY_PATH', '/usr/lib/x86_64-linux-gnu/gazebo-11/plugins:/opt/ros/humble/opt/rviz_ogre_vendor/lib:/opt/ros/humble/lib/x86_64-linux-gnu:/opt/ros/humble/lib::'), ('HOME', '/home/hivecore'), ('CHROME_DESKTOP', 'code.desktop'), ('TERM_PROGRAM_VERSION', '1.101.2'), ('DESKTOP_SESSION', 'ubuntu'), ('GIO_LAUNCHED_DESKTOP_FILE', '/usr/share/applications/code.desktop'), ('ROS_PYTHON_VERSION', '3'), ('GNOME_SHELL_SESSION_MODE', 'ubuntu'), ('GTK_MODULES', 'gail:atk-bridge'), ('VSCODE_GIT_ASKPASS_MAIN', '/usr/share/code/resources/app/extensions/git/dist/askpass-main.js'), ('LC_MONETARY', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_NODE', '/usr/share/code/code'), ('MANAGERPID', '1976'), ('PYDEVD_DISABLE_FILE_VALIDATION', '1'), ('SYSTEMD_EXEC_PID', '2256'), ('BUNDLED_DEBUGPY_PATH', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/libs/debugpy'), ('DBUS_SESSION_BUS_ADDRESS', 'unix:path=/run/user/1000/bus'), ('COLORTERM', 'truecolor'), ('GIO_LAUNCHED_DESKTOP_FILE_PID', '63813'), ('IM_CONFIG_PHASE', '1'), ('ROS_DISTRO', 'humble'), ('GTK_IM_MODULE', 'ibus'), ('LOGNAME', 'hivecore'), ('JOURNAL_STREAM', '8:4766'), ('_', '/usr/bin/colcon'), ('ROS_VERSION', '2'), ('XDG_SESSION_CLASS', 'user'), ('USERNAME', 'hivecore'), ('TERM', 'xterm-256color'), ('GNOME_DESKTOP_SESSION_ID', 'this-is-deprecated'), ('ROS_LOCALHOST_ONLY', '0'), ('WINDOWPATH', '2'), ('PATH', '/home/hivecore/.local/bin:/opt/ros/humble/bin:/home/hivecore/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/bundled/scripts/noConfigScripts'), ('SESSION_MANAGER', 'local/hivecore-Precision-3680:@/tmp/.ICE-unix/2228,unix/hivecore-Precision-3680:/tmp/.ICE-unix/2228'), ('INVOCATION_ID', '0360bd67df414a9e9de83e899b97036d'), ('XDG_MENU_PREFIX', 'gnome-'), ('LC_ADDRESS', 'zh_CN.UTF-8'), ('XDG_RUNTIME_DIR', '/run/user/1000'), ('GDK_BACKEND', 'x11'), ('DISPLAY', ':1'), ('VSCODE_DEBUGPY_ADAPTER_ENDPOINTS', '/home/hivecore/.vscode/extensions/ms-python.debugpy-2025.10.0-linux-x64/.noConfigDebugAdapterEndpoints/endpoint-ffd79902c8a5999d.txt'), ('LANG', 'en_US.UTF-8'), ('XDG_CURRENT_DESKTOP', 'Unity'), ('LC_TELEPHONE', 'zh_CN.UTF-8'), ('XMODIFIERS', '@im=ibus'), ('XDG_SESSION_DESKTOP', 'ubuntu'), ('XAUTHORITY', '/run/user/1000/gdm/Xauthority'), ('LS_COLORS', 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'), ('VSCODE_GIT_IPC_HANDLE', '/run/user/1000/vscode-git-3bd65c1082.sock'), ('TERM_PROGRAM', 'vscode'), ('SSH_AGENT_LAUNCHER', 'gnome-keyring'), ('SSH_AUTH_SOCK', '/run/user/1000/keyring/ssh'), ('AMENT_PREFIX_PATH', '/opt/ros/humble'), ('ORIGINAL_XDG_CURRENT_DESKTOP', 'ubuntu:GNOME'), ('SHELL', '/bin/bash'), ('LC_NAME', 'zh_CN.UTF-8'), ('QT_ACCESSIBILITY', '1'), ('GDMSESSION', 'ubuntu'), ('LESSCLOSE', '/usr/bin/lesspipe %s %s'), ('LC_MEASUREMENT', 'zh_CN.UTF-8'), ('GPG_AGENT_INFO', '/run/user/1000/gnupg/S.gpg-agent:0:1'), ('GJS_DEBUG_OUTPUT', 'stderr'), ('LC_IDENTIFICATION', 'zh_CN.UTF-8'), ('VSCODE_GIT_ASKPASS_EXTRA_ARGS', ''), ('QT_IM_MODULE', 'ibus'), ('PWD', '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2'), ('LC_ALL', 'en_US.UTF-8'), ('XDG_CONFIG_DIRS', '/etc/xdg/xdg-ubuntu:/etc/xdg'), ('XDG_DATA_DIRS', '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'), ('PYTHONPATH', '/opt/ros/humble/lib/python3.10/site-packages:/opt/ros/humble/local/lib/python3.10/dist-packages'), ('LC_NUMERIC', 'zh_CN.UTF-8'), ('LC_PAPER', 'zh_CN.UTF-8'), ('COLCON', '1'), ('CMAKE_PREFIX_PATH', '/opt/ros/humble')]), 'shell': False} +[0.148656] (hive_core_r2) StdoutLine: {'line': b'-- Install configuration: ""\n'} +[0.148815] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch\n'} +[0.148873] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__\n'} +[0.148926] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc\n'} +[0.148996] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py\n'} +[0.149045] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf\n'} +[0.149093] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes\n'} +[0.149218] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL\n'} +[0.149278] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL\n'} +[0.149328] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL\n'} +[0.149393] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL\n'} +[0.149438] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL\n'} +[0.149486] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL\n'} +[0.149534] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL\n'} +[0.149582] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL\n'} +[0.149630] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL\n'} +[0.149677] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL\n'} +[0.149724] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL\n'} +[0.149771] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL\n'} +[0.149818] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL\n'} +[0.149865] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf\n'} +[0.149912] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro\n'} +[0.149960] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config\n'} +[0.150007] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz\n'} +[0.150054] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz\n'} +[0.150166] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2\n'} +[0.150223] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2\n'} +[0.150269] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh\n'} +[0.150314] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv\n'} +[0.150362] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh\n'} +[0.150407] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv\n'} +[0.150452] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash\n'} +[0.150498] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh\n'} +[0.150549] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh\n'} +[0.150596] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv\n'} +[0.150643] (hive_core_r2) StdoutLine: {'line': b'-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv\n'} +[0.150690] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2\n'} +[0.150737] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake\n'} +[0.150784] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake\n'} +[0.150831] (hive_core_r2) StdoutLine: {'line': b'-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml\n'} +[0.151261] (hive_core_r2) CommandEnded: {'returncode': 0} +[0.200198] (-) TimerEvent: {} +[0.217413] (hive_core_r2) JobEnded: {'identifier': 'hive_core_r2', 'rc': 0} +[0.218816] (-) EventReactorShutdown: {} diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/command.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/command.log new file mode 100644 index 0000000..b992a1f --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/command.log @@ -0,0 +1,4 @@ +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stderr.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout.log new file mode 100644 index 0000000..bbdf71a --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout_stderr.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout_stderr.log new file mode 100644 index 0000000..bbdf71a --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/stdout_stderr.log @@ -0,0 +1,40 @@ +-- Install configuration: "" +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +-- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +-- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/streams.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/streams.log new file mode 100644 index 0000000..952b814 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/hive_core_r2/streams.log @@ -0,0 +1,44 @@ +[0.005s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.050s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.105s] Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.148s] -- Install configuration: "" +[0.148s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__ +[0.149s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc +[0.149s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/launch/display_launch.py +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightBackLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/rightFrountWheel.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftBackLeg1.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/leftFrountLeg2.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/meshes/base_link.STL +[0.149s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/urdf/HiveCoreR2.urdf.xacro +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/config/rviz/display_model.rviz +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/package_run_dependencies/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/parent_prefix_path/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/ament_prefix_path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/environment/path.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.bash +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.sh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.zsh +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/local_setup.dsv +[0.150s] -- Installing: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/ament_index/resource_index/packages/hive_core_r2 +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config.cmake +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/cmake/hive_core_r2Config-version.cmake +[0.150s] -- Up-to-date: /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.xml +[0.151s] Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 diff --git a/HiveCoreR2/log/build_2025-07-25_15-13-46/logger_all.log b/HiveCoreR2/log/build_2025-07-25_15-13-46/logger_all.log new file mode 100644 index 0000000..b004822 --- /dev/null +++ b/HiveCoreR2/log/build_2025-07-25_15-13-46/logger_all.log @@ -0,0 +1,138 @@ +[0.048s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] +[0.048s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=32, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover +[0.114s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover +[0.114s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] +[0.114s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] +[0.119s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ignore', 'ignore_ament_install'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ignore_ament_install' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_pkg'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_pkg' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['colcon_meta'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'colcon_meta' +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extensions ['ros'] +[0.120s] Level 1:colcon.colcon_core.package_identification:_identify(src/hive_core_r2) by extension 'ros' +[0.121s] DEBUG:colcon.colcon_core.package_identification:Package 'src/hive_core_r2' with type 'ros.ament_cmake' and name 'hive_core_r2' +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover +[0.121s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults +[0.133s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters +[0.133s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover +[0.134s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 423 installed packages in /opt/ros/humble +[0.135s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_args' from command line to 'None' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target' from command line to 'None' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_target_skip_unavailable' from command line to 'False' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_cache' from command line to 'False' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_clean_first' from command line to 'False' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'cmake_force_configure' from command line to 'False' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'ament_cmake_args' from command line to 'None' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_cmake_args' from command line to 'None' +[0.154s] Level 5:colcon.colcon_core.verb:set package 'hive_core_r2' build argument 'catkin_skip_building_tests' from command line to 'False' +[0.154s] DEBUG:colcon.colcon_core.verb:Building package 'hive_core_r2' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2', 'merge_install': False, 'path': '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2', 'symlink_install': False, 'test_result_base': None} +[0.154s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor +[0.155s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete +[0.155s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' with build type 'ament_cmake' +[0.155s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/src/hive_core_r2' +[0.156s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems +[0.156s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell +[0.156s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment +[0.160s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.206s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --build /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 -- -j32 -l32 +[0.261s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.306s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.306s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2' returned '0': CMAKE_PREFIX_PATH=/opt/ros/humble /home/hivecore/.local/bin/cmake --install /home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/build/hive_core_r2 +[0.308s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.308s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.308s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.309s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.309s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.309s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.310s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.310s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.311s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.311s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.311s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.311s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.312s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.312s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(hive_core_r2) +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake module files +[0.312s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2' for CMake config files +[0.312s] Level 1:colcon.colcon_core.shell:create_environment_hook('hive_core_r2', 'cmake_prefix_path') +[0.313s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.ps1' +[0.366s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.dsv' +[0.367s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/hook/cmake_prefix_path.sh' +[0.367s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.368s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/pkgconfig/hive_core_r2.pc' +[0.368s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/lib/python3.10/site-packages' +[0.368s] Level 1:colcon.colcon_core.environment:checking '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/bin' +[0.369s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.ps1' +[0.369s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.dsv' +[0.370s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.sh' +[0.371s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.bash' +[0.371s] INFO:colcon.colcon_core.shell:Creating package script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/hive_core_r2/package.zsh' +[0.372s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/hive_core_r2/share/colcon-core/packages/hive_core_r2) +[0.372s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop +[0.373s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed +[0.373s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' +[0.373s] DEBUG:colcon.colcon_core.event_reactor:joining thread +[0.382s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems +[0.382s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems +[0.382s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' +[0.403s] DEBUG:colcon.colcon_core.event_reactor:joined thread +[0.403s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.ps1' +[0.404s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_ps1.py' +[0.405s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.ps1' +[0.406s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.sh' +[0.407s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/_local_setup_util_sh.py' +[0.407s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.sh' +[0.408s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.bash' +[0.408s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.bash' +[0.408s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/local_setup.zsh' +[0.409s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/hivecore/ros2_ws/softwaresystem/HiveCoreR2/install/setup.zsh' diff --git a/HiveCoreR2/log/latest b/HiveCoreR2/log/latest new file mode 120000 index 0000000..b57d247 --- /dev/null +++ b/HiveCoreR2/log/latest @@ -0,0 +1 @@ +latest_build \ No newline at end of file diff --git a/HiveCoreR2/log/latest_build b/HiveCoreR2/log/latest_build new file mode 120000 index 0000000..7ab56f6 --- /dev/null +++ b/HiveCoreR2/log/latest_build @@ -0,0 +1 @@ +build_2025-07-25_15-13-46 \ No newline at end of file diff --git a/HiveCoreR2/src/hive_core_r2/CMakeLists.txt b/HiveCoreR2/src/hive_core_r2/CMakeLists.txt new file mode 100644 index 0000000..1c1139e --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/CMakeLists.txt @@ -0,0 +1,32 @@ +cmake_minimum_required(VERSION 3.10) +project(hive_core_r2) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +# find dependencies +find_package(ament_cmake REQUIRED) +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + + +install(DIRECTORY launch urdf config + DESTINATION share/${PROJECT_NAME} +) + + +ament_package() diff --git a/HiveCoreR2/src/hive_core_r2/config/rviz/display_model.rviz b/HiveCoreR2/src/hive_core_r2/config/rviz/display_model.rviz new file mode 100644 index 0000000..d624b06 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/config/rviz/display_model.rviz @@ -0,0 +1,170 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /RobotModel1 + Splitter Ratio: 0.5 + Tree Height: 480 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz_default_plugins/RobotModel + Collision Enabled: false + Description File: "" + Description Source: Topic + Description Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_description + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + imu_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Mass Properties: + Inertia: false + Mass: false + Name: RobotModel + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: base_link + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 0.4101419746875763 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.785398006439209 + Target Frame: + Value: Orbit (rviz) + Yaw: 0.785398006439209 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 777 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001560000026bfc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d0000026b000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f0000026bfc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003d0000026b000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000054a0000003efc0100000002fb0000000800540069006d006501000000000000054a000002fb00fffffffb0000000800540069006d00650100000000000004500000000000000000000002d90000026b00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1354 + X: 70 + Y: 27 diff --git a/HiveCoreR2/src/hive_core_r2/export.log b/HiveCoreR2/src/hive_core_r2/export.log new file mode 100644 index 0000000..17305fb --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/export.log @@ -0,0 +1,1793 @@ +2025-06-30 16:55:01,053 INFO Logger.cs: 70 - +-------------------------------------------------------------------------------- +2025-06-30 16:55:01,081 INFO Logger.cs: 71 - Logging commencing for SW2URDF exporter +2025-06-30 16:55:01,083 INFO Logger.cs: 73 - Commit version 1.6.0-4-g7f85cfe +2025-06-30 16:55:01,083 INFO Logger.cs: 74 - Build version 1.6.7995.38578 +2025-06-30 16:55:01,085 INFO SwAddin.cs: 192 - Attempting to connect to SW +2025-06-30 16:55:01,085 INFO SwAddin.cs: 197 - Setting up callbacks +2025-06-30 16:55:01,085 INFO SwAddin.cs: 201 - Setting up command manager +2025-06-30 16:55:01,086 INFO SwAddin.cs: 204 - Adding command manager +2025-06-30 16:55:01,088 INFO SwAddin.cs: 263 - Adding Assembly export to file menu +2025-06-30 16:55:01,088 INFO SwAddin.cs: 272 - Adding Part export to file menu +2025-06-30 16:55:01,088 INFO SwAddin.cs: 210 - Adding event handlers +2025-06-30 16:55:01,090 INFO SwAddin.cs: 217 - Connecting plugin to SolidWorks +2025-06-30 17:10:23,141 INFO SwAddin.cs: 294 - Assembly export called for file װ.SLDASM +2025-06-30 17:10:23,142 INFO SwAddin.cs: 299 - Save is required +2025-06-30 17:10:23,142 INFO SwAddin.cs: 313 - Saving assembly +2025-06-30 17:10:23,321 INFO SwAddin.cs: 316 - Opening property manager +2025-06-30 17:10:23,334 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:10:23,338 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:10:23,338 INFO ExportHelperExtension.cs: 1145 - Found 13 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:10:23,339 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:10:23,339 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:10:23,340 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:10:23,340 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:10:23,341 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:10:23,341 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:10:23,341 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:10:23,342 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:10:23,342 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:10:23,342 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:10:23,342 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:10:23,343 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:10:23,343 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:10:23,343 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:10:23,343 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:10:23,343 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:10:23,344 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:10:23,344 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:10:23,344 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:10:23,345 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:10:23,345 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:10:23,345 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:10:23,345 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:10:23,346 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:10:23,346 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:10:23,346 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:10:23,346 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:10:23,347 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:10:23,347 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:10:23,347 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:10:23,347 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:10:23,347 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:10:23,348 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:10:23,348 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:10:23,348 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:10:23,348 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:10:23,349 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:10:23,349 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:10:23,349 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:10:23,349 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:10:23,350 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:10:23,350 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:10:23,350 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:10:23,351 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:10:23,351 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:10:23,351 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:10:23,351 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:10:23,352 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:10:23,352 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:10:23,352 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:10:23,352 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:10:23,353 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:10:23,353 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:10:23,353 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:10:23,353 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:10:23,354 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:10:23,354 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:10:23,354 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:10:23,354 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:10:23,354 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:10:23,355 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:10:23,355 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:10:23,355 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:10:23,355 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:10:23,356 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:10:23,356 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:10:23,360 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:10:23,360 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:10:23,419 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:10:23,419 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:10:23,420 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:10:23,420 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:10:23,420 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:10:23,420 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:10:23,421 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:10:23,421 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:10:23,421 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:10:23,421 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:10:23,422 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:10:23,422 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:10:23,422 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:10:23,422 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:10:23,423 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:10:23,423 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:10:23,423 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:10:23,575 INFO SwAddin.cs: 339 - Loading config tree +2025-06-30 17:10:23,580 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:10:23,643 INFO LinkNode.cs: 35 - Building node base_link +2025-06-30 17:10:23,643 INFO LinkNode.cs: 35 - Building node rightBackLeg1 +2025-06-30 17:10:23,643 INFO LinkNode.cs: 35 - Building node rightBackLeg2 +2025-06-30 17:10:23,643 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:10:23,644 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:10:23,644 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:10:23,646 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for base_link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,646 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:10:23,647 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:10:23,647 INFO CommonSwOperations.cs: 230 - Loaded 1 components for link base_link +2025-06-30 17:10:23,648 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,648 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:10:23,648 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:10:23,648 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:10:23,648 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg1 +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:10:23,649 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg2 +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:10:23,651 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:10:23,677 INFO SwAddin.cs: 344 - Showing property manager +2025-06-30 17:11:42,266 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:12:24,257 INFO SwAddin.cs: 294 - Assembly export called for file װ.SLDASM +2025-06-30 17:12:28,727 INFO SwAddin.cs: 313 - Saving assembly +2025-06-30 17:12:28,837 INFO SwAddin.cs: 316 - Opening property manager +2025-06-30 17:12:28,837 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:12:28,838 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:12:28,838 INFO ExportHelperExtension.cs: 1145 - Found 13 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:12:28,839 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:12:28,839 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:12:28,839 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:12:28,839 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:12:28,840 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:12:28,840 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:12:28,841 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:12:28,841 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:12:28,841 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:12:28,842 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:12:28,842 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:12:28,843 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:12:28,843 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:12:28,844 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:12:28,844 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:12:28,844 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:12:28,844 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:12:28,845 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:12:28,845 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:12:28,845 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:12:28,845 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:12:28,846 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:12:28,846 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:12:28,846 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:12:28,846 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:12:28,847 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:12:28,847 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:12:28,847 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:12:28,847 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:12:28,848 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:12:28,848 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:12:28,848 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:12:28,848 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:12:28,849 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:12:28,849 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:12:28,849 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:12:28,849 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:12:28,850 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:12:28,850 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:12:28,850 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:12:28,851 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:12:28,851 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:12:28,851 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:12:28,852 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:12:28,852 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:12:28,852 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:12:28,852 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:12:28,852 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:12:28,853 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:12:28,853 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:12:28,853 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:12:28,854 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:12:28,854 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:12:28,854 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:12:28,854 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:12:28,855 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:12:28,855 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:12:28,857 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:12:28,858 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:12:28,907 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:12:28,908 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:12:28,909 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:12:28,909 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:12:28,910 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:12:28,910 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:12:28,910 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:12:28,911 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:12:28,911 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:12:28,911 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:12:28,911 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:12:28,912 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:12:28,912 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:12:28,912 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:12:28,912 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:12:28,913 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:12:28,913 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:12:28,913 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:12:28,913 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:12:28,914 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:12:28,914 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:12:28,914 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:12:28,914 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:12:28,915 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:12:28,915 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:12:28,915 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:12:28,942 INFO SwAddin.cs: 339 - Loading config tree +2025-06-30 17:12:28,943 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:12:28,945 INFO LinkNode.cs: 35 - Building node base_link +2025-06-30 17:12:28,945 INFO LinkNode.cs: 35 - Building node rightBackLeg1 +2025-06-30 17:12:28,945 INFO LinkNode.cs: 35 - Building node rightBackLeg2 +2025-06-30 17:12:28,946 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:12:28,946 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:12:28,946 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:12:28,946 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for base_link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,946 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:12:28,947 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:12:28,947 INFO CommonSwOperations.cs: 230 - Loaded 1 components for link base_link +2025-06-30 17:12:28,947 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,947 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:12:28,948 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:12:28,948 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:12:28,948 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:12:28,948 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg1 +2025-06-30 17:12:28,948 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,949 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:12:28,949 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:12:28,949 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:12:28,949 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:12:28,950 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg2 +2025-06-30 17:12:28,950 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,950 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:12:28,950 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,950 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:12:28,951 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:12:28,951 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:12:28,960 INFO SwAddin.cs: 344 - Showing property manager +2025-06-30 17:12:52,502 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:13:16,318 INFO ExportPropertyManager.cs: 422 - Configuration saved +2025-06-30 17:13:16,322 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:13:16,464 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:13:20,204 INFO SwAddin.cs: 294 - Assembly export called for file װ.SLDASM +2025-06-30 17:13:20,206 INFO SwAddin.cs: 299 - Save is required +2025-06-30 17:13:20,206 INFO SwAddin.cs: 313 - Saving assembly +2025-06-30 17:13:20,415 INFO SwAddin.cs: 316 - Opening property manager +2025-06-30 17:13:20,415 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:13:20,416 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:13:20,416 INFO ExportHelperExtension.cs: 1145 - Found 13 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:13:20,417 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:13:20,417 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:13:20,417 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:13:20,417 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:13:20,418 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:13:20,418 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:13:20,418 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:13:20,418 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:13:20,419 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:13:20,419 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:13:20,419 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:13:20,420 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:13:20,420 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:13:20,420 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:13:20,420 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:13:20,421 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:13:20,421 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:13:20,421 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:13:20,421 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:13:20,422 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:13:20,422 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:13:20,422 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:13:20,423 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:13:20,423 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:13:20,423 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:13:20,423 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:13:20,423 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:13:20,424 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:13:20,424 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:13:20,424 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:13:20,424 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:13:20,425 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:13:20,425 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:13:20,425 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:13:20,426 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:13:20,426 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:13:20,426 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:13:20,426 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:13:20,427 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:13:20,427 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:13:20,427 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:13:20,427 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:13:20,428 INFO ExportHelperExtension.cs: 1136 - Found 90 in װ.SLDASM +2025-06-30 17:13:20,428 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:13:20,428 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:13:20,429 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:13:20,429 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:13:20,429 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:13:20,429 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:13:20,430 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:13:20,430 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:13:20,430 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:13:20,430 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:13:20,431 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:13:20,431 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:13:20,431 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:13:20,431 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:13:20,432 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:13:20,432 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:13:20,432 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:13:20,432 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:13:20,433 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:13:20,433 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:13:20,433 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:13:20,434 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:13:20,434 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:13:20,434 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:13:20,435 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:13:20,435 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:13:20,435 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:13:20,435 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:13:20,436 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:13:20,436 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:13:20,437 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:13:20,437 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:13:20,437 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:13:20,437 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:13:20,438 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:13:20,438 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:13:20,438 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:13:20,438 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:13:20,439 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:13:20,439 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:13:20,439 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:13:20,439 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:13:20,502 INFO SwAddin.cs: 339 - Loading config tree +2025-06-30 17:13:20,503 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:13:20,505 INFO LinkNode.cs: 35 - Building node base_link +2025-06-30 17:13:20,505 INFO LinkNode.cs: 35 - Building node rightBackLeg1 +2025-06-30 17:13:20,506 INFO LinkNode.cs: 35 - Building node rightBackLeg2 +2025-06-30 17:13:20,506 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:13:20,506 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:13:20,506 INFO LinkNode.cs: 35 - Building node Empty_Link +2025-06-30 17:13:20,507 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for base_link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,507 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:13:20,507 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:13:20,507 INFO CommonSwOperations.cs: 230 - Loaded 1 components for link base_link +2025-06-30 17:13:20,507 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,508 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:13:20,508 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:13:20,508 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:13:20,508 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:13:20,509 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg1 +2025-06-30 17:13:20,509 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,509 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:13:20,509 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:13:20,509 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:13:20,510 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:13:20,510 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg2 +2025-06-30 17:13:20,510 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,510 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:13:20,510 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,511 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:13:20,511 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for Empty_Link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:13:20,511 INFO CommonSwOperations.cs: 230 - Loaded 0 components for link Empty_Link +2025-06-30 17:13:20,520 INFO SwAddin.cs: 344 - Showing property manager +2025-06-30 17:13:37,538 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:14:07,598 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:18:07,393 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:18:12,744 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:18:51,048 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:18:58,381 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:19:02,846 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:19:29,655 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:19:31,659 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:19:43,636 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:19:47,971 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:20:05,906 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:20:12,983 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:20:20,092 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:20:51,102 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:20:54,842 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:21:00,515 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:21:31,313 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:21:35,756 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:21:39,454 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:04,445 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:12,517 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:20,745 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:26,104 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:54,935 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:22:57,694 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:02,853 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:21,628 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:25,183 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:30,072 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:52,025 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:23:54,416 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:24:33,993 INFO ExportPropertyManager.cs: 422 - Configuration saved +2025-06-30 17:24:33,995 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsenametrueEmpty_Linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetrueAutomatically Detectxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateAutomatically GeneratelinktruefalsefalsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:24:36,399 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg1 +2025-06-30 17:24:36,403 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:24:36,404 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:36,772 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:36,772 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:36,772 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:36,773 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:36,790 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:37,257 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightBackLeg1 failed +2025-06-30 17:24:37,266 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg2 +2025-06-30 17:24:37,267 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg1 +2025-06-30 17:24:37,267 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:37,267 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:24:37,267 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:37,772 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:37,772 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:37,772 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:37,773 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:37,773 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:37,773 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:24:37,773 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:38,297 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg1 to child rightBackLeg2 failed +2025-06-30 17:24:38,302 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackWheel +2025-06-30 17:24:38,303 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg2 +2025-06-30 17:24:38,303 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:24:38,303 INFO ExportHelperExtension.cs: 1402 - Fixing 120 +2025-06-30 17:24:38,303 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:38,304 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:24:38,304 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:38,838 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:38,839 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:38,839 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:38,839 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:38,839 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:24:38,840 INFO ExportHelperExtension.cs: 1352 - Unfixing component 120 +2025-06-30 17:24:38,840 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:38,840 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:24:38,840 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:39,381 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg2 to child rightBackWheel failed +2025-06-30 17:24:39,387 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg1 +2025-06-30 17:24:39,387 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:24:39,387 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:39,876 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:39,877 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:39,877 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:39,877 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:39,877 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:40,387 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftBackLeg1 failed +2025-06-30 17:24:40,395 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg2 +2025-06-30 17:24:40,402 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg1 +2025-06-30 17:24:40,403 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:40,403 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:24:40,403 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:40,974 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:40,974 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:40,974 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:40,975 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:40,975 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:40,975 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:24:40,976 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:41,467 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg1 to child leftBackLeg2 failed +2025-06-30 17:24:41,475 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackWheel +2025-06-30 17:24:41,475 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg2 +2025-06-30 17:24:41,475 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:24:41,476 INFO ExportHelperExtension.cs: 1402 - Fixing 167 +2025-06-30 17:24:41,476 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:41,476 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:24:41,477 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:42,021 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:42,023 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:42,023 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:42,023 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:42,023 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:24:42,024 INFO ExportHelperExtension.cs: 1352 - Unfixing component 167 +2025-06-30 17:24:42,024 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:42,024 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:24:42,024 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:42,568 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg2 to child leftBackWheel failed +2025-06-30 17:24:42,573 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg1 +2025-06-30 17:24:42,573 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:24:42,575 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:43,076 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:43,077 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:43,077 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:43,078 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:43,078 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:43,585 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightFrountLeg1 failed +2025-06-30 17:24:43,592 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg2 +2025-06-30 17:24:43,593 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg1 +2025-06-30 17:24:43,593 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:43,593 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:24:43,594 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:44,122 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:44,122 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:44,123 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:44,123 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:44,123 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:44,123 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:24:44,124 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:44,634 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg1 to child rightFrountLeg2 failed +2025-06-30 17:24:44,640 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountWheel +2025-06-30 17:24:44,641 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg2 +2025-06-30 17:24:44,641 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:24:44,641 INFO ExportHelperExtension.cs: 1402 - Fixing 99 +2025-06-30 17:24:44,641 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:44,642 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:24:44,642 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:45,200 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:45,200 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:45,200 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:45,201 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:45,201 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:24:45,201 INFO ExportHelperExtension.cs: 1352 - Unfixing component 99 +2025-06-30 17:24:45,201 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:45,201 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:24:45,202 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:45,751 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg2 to child rightFrountWheel failed +2025-06-30 17:24:45,756 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg1 +2025-06-30 17:24:45,756 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:24:45,757 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:46,240 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:46,241 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:46,241 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:46,241 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:46,242 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:46,738 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftFrountLeg1 failed +2025-06-30 17:24:46,746 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg2 +2025-06-30 17:24:46,746 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg1 +2025-06-30 17:24:46,747 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:46,747 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:24:46,747 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:47,275 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:47,276 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:47,276 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:47,276 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:47,277 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:47,277 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:24:47,277 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:47,772 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg1 to child leftFrountLeg2 failed +2025-06-30 17:24:47,779 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountWheel +2025-06-30 17:24:47,779 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg2 +2025-06-30 17:24:47,779 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:24:47,779 INFO ExportHelperExtension.cs: 1402 - Fixing 140 +2025-06-30 17:24:47,779 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:47,780 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:24:47,780 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:24:48,327 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:24:48,328 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:24:48,328 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:24:48,328 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:24:48,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:24:48,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 140 +2025-06-30 17:24:48,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:48,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:24:48,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:24:48,868 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg2 to child leftFrountWheel failed +2025-06-30 17:24:49,001 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:24:49,004 INFO ExportHelperExtension.cs: 1136 - Found 92 in װ.SLDASM +2025-06-30 17:24:49,005 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:24:49,006 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:24:49,006 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:24:49,006 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:24:49,006 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:24:49,007 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:24:49,007 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:24:49,007 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:24:49,007 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:24:49,008 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:24:49,008 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:24:49,008 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:24:49,008 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:24:49,009 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:24:49,009 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:24:49,009 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:24:49,009 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:24:49,010 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:24:49,010 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:24:49,010 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:24:49,011 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:24:49,011 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:24:49,011 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:24:49,011 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:24:49,011 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:24:49,037 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:24:49,038 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:24:49,038 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:24:49,039 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:24:49,039 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:24:49,039 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:24:49,040 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:24:49,040 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:24:49,040 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:24:49,040 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:24:49,041 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:24:49,041 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:24:49,041 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:24:49,042 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:24:49,042 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:24:49,042 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:24:49,042 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:24:49,043 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:24:49,043 INFO ExportHelperExtension.cs: 1136 - Found 92 in װ.SLDASM +2025-06-30 17:24:49,043 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:24:49,044 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:24:49,044 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:24:49,044 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:24:49,044 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:24:49,045 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:24:49,045 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:24:49,045 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:24:49,045 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:24:49,046 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:24:49,046 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:24:49,046 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:24:49,046 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:24:49,047 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:24:49,047 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:24:49,047 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:24:49,047 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:24:49,048 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:24:49,048 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:24:49,048 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:24:49,048 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:24:49,049 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:24:49,049 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:24:49,049 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:24:49,049 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:24:49,050 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:24:49,050 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:24:49,050 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:24:49,050 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:24:49,051 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:24:49,051 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:24:49,051 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:24:49,051 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:24:49,052 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:24:49,052 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:24:49,052 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:24:49,052 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:24:49,053 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:24:49,053 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:24:49,053 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:24:49,054 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:24:49,054 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:24:49,147 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:29:04,578 INFO SwAddin.cs: 294 - Assembly export called for file װ.SLDASM +2025-06-30 17:29:06,464 INFO SwAddin.cs: 313 - Saving assembly +2025-06-30 17:29:06,599 INFO SwAddin.cs: 316 - Opening property manager +2025-06-30 17:29:06,599 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:29:06,599 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:29:06,601 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:29:06,601 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:29:06,601 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:29:06,602 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:29:06,602 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:29:06,602 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:29:06,603 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:29:06,603 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:29:06,603 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:29:06,603 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:29:06,604 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:29:06,604 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:29:06,604 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:29:06,605 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:29:06,605 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:29:06,605 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:29:06,605 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:29:06,606 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:29:06,606 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:29:06,606 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:29:06,606 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:29:06,607 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:29:06,607 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:29:06,607 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:29:06,607 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:29:06,607 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:29:06,608 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:29:06,608 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:29:06,608 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:29:06,608 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:29:06,609 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:29:06,609 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:29:06,609 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:29:06,609 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:29:06,610 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:29:06,610 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:29:06,610 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:29:06,610 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:29:06,611 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:29:06,611 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:29:06,611 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:29:06,612 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:29:06,612 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:29:06,612 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:29:06,612 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:29:06,612 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:29:06,613 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:29:06,613 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:29:06,613 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:29:06,613 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:29:06,614 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:29:06,614 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:29:06,614 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:29:06,615 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:29:06,615 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:29:06,615 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:29:06,616 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:29:06,616 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:29:06,616 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:29:06,616 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:29:06,617 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:29:06,617 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:29:06,617 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:29:06,617 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:29:06,618 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:29:06,618 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:29:06,618 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:29:06,618 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:29:06,618 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:29:06,619 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:29:06,619 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:29:06,619 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:29:06,620 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:29:06,620 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:29:06,620 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:29:06,620 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:29:06,620 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:29:06,621 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:29:06,621 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:29:06,621 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:29:06,621 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:29:06,622 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:29:06,622 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:29:06,622 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:29:06,622 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:29:06,623 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:29:06,817 INFO SwAddin.cs: 339 - Loading config tree +2025-06-30 17:29:06,818 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowertrueuppertrueefforttruevelocitytruelimittruerisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruenametruerightBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackHiplinktruenametrueleftBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackKneelinktruenametrueleftBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountHiplinktruenametruerightFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountKneelinktruenametruerightFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountHiplinktruenametrueleftFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountKneelinktruenametrueleftFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:29:06,825 INFO LinkNode.cs: 35 - Building node base_link +2025-06-30 17:29:06,825 INFO LinkNode.cs: 35 - Building node rightBackLeg1 +2025-06-30 17:29:06,826 INFO LinkNode.cs: 35 - Building node rightBackLeg2 +2025-06-30 17:29:06,826 INFO LinkNode.cs: 35 - Building node rightBackWheel +2025-06-30 17:29:06,826 INFO LinkNode.cs: 35 - Building node leftBackLeg1 +2025-06-30 17:29:06,826 INFO LinkNode.cs: 35 - Building node leftBackLeg2 +2025-06-30 17:29:06,826 INFO LinkNode.cs: 35 - Building node leftBackWheel +2025-06-30 17:29:06,827 INFO LinkNode.cs: 35 - Building node rightFrountLeg1 +2025-06-30 17:29:06,827 INFO LinkNode.cs: 35 - Building node rightFrountLeg2 +2025-06-30 17:29:06,827 INFO LinkNode.cs: 35 - Building node rightFrountWheel +2025-06-30 17:29:06,827 INFO LinkNode.cs: 35 - Building node leftFrountLeg1 +2025-06-30 17:29:06,827 INFO LinkNode.cs: 35 - Building node leftFrountLeg2 +2025-06-30 17:29:06,828 INFO LinkNode.cs: 35 - Building node leftFrountWheel +2025-06-30 17:29:06,828 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for base_link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,828 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:29:06,830 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,830 INFO CommonSwOperations.cs: 230 - Loaded 1 components for link base_link +2025-06-30 17:29:06,830 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,830 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:29:06,830 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,831 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:29:06,831 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:29:06,831 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg1 +2025-06-30 17:29:06,832 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,832 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:29:06,832 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:29:06,832 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:29:06,833 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:29:06,833 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg2 +2025-06-30 17:29:06,833 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,833 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:29:06,834 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:29:06,834 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? Tn?-2@?] z7h:g??M?? +2025-06-30 17:29:06,834 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,834 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackWheel +2025-06-30 17:29:06,834 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,835 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:29:06,835 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,835 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:29:06,835 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:29:06,835 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackLeg1 +2025-06-30 17:29:06,836 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,836 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:29:06,836 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:29:06,836 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-4@?] z7h:g??M?? +2025-06-30 17:29:06,837 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:29:06,837 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackLeg2 +2025-06-30 17:29:06,837 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,837 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-4@?] z7h:g??M?? +2025-06-30 17:29:06,837 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:29:06,838 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? Tn?-1@?] z7h:g??M?? +2025-06-30 17:29:06,838 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,838 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackWheel +2025-06-30 17:29:06,838 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,839 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:29:06,839 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,839 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-3@?] z7h:g??M?W +2025-06-30 17:29:06,839 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:29:06,839 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountLeg1 +2025-06-30 17:29:06,840 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,840 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-3@?] z7h:g??M?W +2025-06-30 17:29:06,840 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:29:06,840 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-3@?] z7h:g??M?c +2025-06-30 17:29:06,840 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:29:06,841 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountLeg2 +2025-06-30 17:29:06,841 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,841 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-3@?] z7h:g??M?c +2025-06-30 17:29:06,841 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:29:06,841 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? MRn?-1@?] z7h:g??M?? +2025-06-30 17:29:06,842 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\ǰ.SLDPRT +2025-06-30 17:29:06,842 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountWheel +2025-06-30 17:29:06,842 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,842 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:29:06,843 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:29:06,843 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-4@?] z7h:g??M?? +2025-06-30 17:29:06,843 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:29:06,843 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountLeg1 +2025-06-30 17:29:06,843 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,844 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-4@?] z7h:g??M?? +2025-06-30 17:29:06,844 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:29:06,844 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-4@?] z7h:g??M?? +2025-06-30 17:29:06,844 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:29:06,844 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountLeg2 +2025-06-30 17:29:06,845 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:29:06,845 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-4@?] z7h:g??M?? +2025-06-30 17:29:06,845 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:29:06,845 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? MRn?-2@?] z7h:g??M?? +2025-06-30 17:29:06,845 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\ǰ.SLDPRT +2025-06-30 17:29:06,847 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountWheel +2025-06-30 17:29:06,940 INFO SwAddin.cs: 344 - Showing property manager +2025-06-30 17:29:18,009 INFO ExportPropertyManager.cs: 422 - Configuration saved +2025-06-30 17:29:18,011 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowertrueuppertrueefforttruevelocitytruelimittruerisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruenametruerightBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackHiplinktruenametrueleftBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackKneelinktruenametrueleftBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountHiplinktruenametruerightFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountKneelinktruenametruerightFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountHiplinktruenametrueleftFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountKneelinktruenametrueleftFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:29:18,202 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg1 +2025-06-30 17:29:18,202 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:29:18,203 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:18,491 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:18,492 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:18,492 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:18,492 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:18,492 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:18,768 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightBackLeg1 failed +2025-06-30 17:29:18,775 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg2 +2025-06-30 17:29:18,777 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg1 +2025-06-30 17:29:18,777 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:18,777 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:29:18,777 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:19,071 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:19,072 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:19,072 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:19,072 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:19,074 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:19,074 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:29:19,074 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:19,345 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg1 to child rightBackLeg2 failed +2025-06-30 17:29:19,350 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackWheel +2025-06-30 17:29:19,351 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg2 +2025-06-30 17:29:19,351 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:29:19,351 INFO ExportHelperExtension.cs: 1402 - Fixing 120 +2025-06-30 17:29:19,351 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:19,352 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:29:19,352 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:19,675 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:19,675 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:19,675 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:19,676 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:19,676 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:29:19,676 INFO ExportHelperExtension.cs: 1352 - Unfixing component 120 +2025-06-30 17:29:19,676 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:19,678 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:29:19,678 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:20,065 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg2 to child rightBackWheel failed +2025-06-30 17:29:20,071 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg1 +2025-06-30 17:29:20,073 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:29:20,073 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:20,428 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:20,428 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:20,428 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:20,429 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:20,429 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:20,833 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftBackLeg1 failed +2025-06-30 17:29:20,838 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg2 +2025-06-30 17:29:20,839 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg1 +2025-06-30 17:29:20,839 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:20,839 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:29:20,840 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:21,328 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:21,329 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:21,329 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:21,329 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:21,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:21,329 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:29:21,330 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:21,826 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg1 to child leftBackLeg2 failed +2025-06-30 17:29:21,831 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackWheel +2025-06-30 17:29:21,832 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg2 +2025-06-30 17:29:21,832 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:29:21,832 INFO ExportHelperExtension.cs: 1402 - Fixing 167 +2025-06-30 17:29:21,833 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:21,833 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:29:21,833 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:22,427 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:22,429 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:22,429 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:22,429 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:22,430 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:29:22,430 INFO ExportHelperExtension.cs: 1352 - Unfixing component 167 +2025-06-30 17:29:22,430 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:22,430 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:29:22,430 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:23,223 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg2 to child leftBackWheel failed +2025-06-30 17:29:23,228 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg1 +2025-06-30 17:29:23,229 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:29:23,229 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:23,763 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:23,764 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:23,764 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:23,764 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:23,765 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:24,307 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightFrountLeg1 failed +2025-06-30 17:29:24,313 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg2 +2025-06-30 17:29:24,313 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg1 +2025-06-30 17:29:24,313 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:24,314 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:29:24,314 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:24,951 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:24,952 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:24,952 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:24,953 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:24,953 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:24,953 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:29:24,953 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:25,558 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg1 to child rightFrountLeg2 failed +2025-06-30 17:29:25,563 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountWheel +2025-06-30 17:29:25,564 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg2 +2025-06-30 17:29:25,564 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:29:25,564 INFO ExportHelperExtension.cs: 1402 - Fixing 99 +2025-06-30 17:29:25,565 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:25,565 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:29:25,565 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:26,179 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:26,179 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:26,181 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:26,181 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:26,181 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:29:26,181 INFO ExportHelperExtension.cs: 1352 - Unfixing component 99 +2025-06-30 17:29:26,182 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:26,182 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:29:26,182 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:26,883 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg2 to child rightFrountWheel failed +2025-06-30 17:29:26,889 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg1 +2025-06-30 17:29:26,890 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:29:26,890 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:27,627 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:27,628 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:27,628 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:27,628 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:27,629 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:28,178 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftFrountLeg1 failed +2025-06-30 17:29:28,188 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg2 +2025-06-30 17:29:28,189 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg1 +2025-06-30 17:29:28,189 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:28,189 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:29:28,189 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:28,722 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:28,723 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:28,723 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:28,723 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:28,724 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:28,724 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:29:28,724 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:29,290 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg1 to child leftFrountLeg2 failed +2025-06-30 17:29:29,296 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountWheel +2025-06-30 17:29:29,296 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg2 +2025-06-30 17:29:29,297 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:29:29,297 INFO ExportHelperExtension.cs: 1402 - Fixing 140 +2025-06-30 17:29:29,297 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:29,297 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:29:29,298 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:29:29,874 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:29:29,874 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:29:29,874 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:29:29,875 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:29:29,875 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:29:29,875 INFO ExportHelperExtension.cs: 1352 - Unfixing component 140 +2025-06-30 17:29:29,875 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:29,876 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:29:29,876 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:29:30,494 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg2 to child leftFrountWheel failed +2025-06-30 17:29:30,660 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:29:30,661 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:29:30,661 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:29:30,662 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:29:30,662 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:29:30,662 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:29:30,662 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:29:30,663 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:29:30,663 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:29:30,663 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:29:30,664 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:29:30,664 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:29:30,664 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:29:30,665 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:29:30,665 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:29:30,665 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:29:30,666 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:29:30,666 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:29:30,666 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:29:30,667 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:29:30,667 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:29:30,667 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:29:30,667 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:29:30,667 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:29:30,668 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:29:30,668 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:29:30,668 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:29:30,668 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:29:30,669 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:29:30,669 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:29:30,669 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:29:30,669 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:29:30,670 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:29:30,670 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:29:30,670 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:29:30,670 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:29:30,670 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:29:30,672 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:29:30,672 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:29:30,672 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:29:30,672 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:29:30,673 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:29:30,673 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:29:30,673 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:29:30,673 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:29:30,674 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:29:30,674 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:29:30,674 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:29:30,675 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:29:30,676 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:29:30,676 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:29:30,676 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:29:30,677 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:29:30,677 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:29:30,677 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:29:30,677 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:29:30,678 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:29:30,678 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:29:30,678 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:29:30,678 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:29:30,679 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:29:30,679 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:29:30,679 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:29:30,679 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:29:30,681 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:29:30,681 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:29:30,681 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:29:30,682 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:29:30,682 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:29:30,682 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:29:30,682 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:29:30,683 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:29:30,683 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:29:30,683 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:29:30,684 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:29:30,684 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:29:30,684 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:29:30,684 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:29:30,685 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:29:30,685 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:29:30,685 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:29:30,685 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:29:30,686 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:29:30,782 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:35:27,744 INFO AssemblyExportForm.cs: 253 - Completing URDF export +2025-06-30 17:35:27,747 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneratelinktruenametruerightBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowertrueuppertrueefforttruevelocitytruelimittruerisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackHiplinktruenametruerightBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackKneelinktruenametruerightBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackHiplinktruenametrueleftBackLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetrueprismaticxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackKneelinktruenametrueleftBackWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountHiplinktruenametruerightFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountKneelinktruenametruerightFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GeneraterightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountHiplinktruenametrueleftFrountLeg2xyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountKneelinktruenametrueleftFrountWheelxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruecontinuousxyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAutomatically GenerateleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:35:52,638 INFO AssemblyExportForm.cs: 309 - Saving URDF package to D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:35:52,640 INFO ExportHelper.cs: 147 - Beginning the export process +2025-06-30 17:35:52,641 INFO ExportHelper.cs: 153 - Creating package directories with name װ.SLDASM and save path D:\7_HiveCore\1_RD\1_˫Ŀ\\V1 +2025-06-30 17:35:56,447 ERROR AssemblyExportForm.cs: 126 - Exception encountered in Assembly export form +System.IO.IOException: ޷D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASMΪͬļĿ¼Ѵڡ + System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) + System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost) + System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost) + SW2URDF.URDFExport.URDFPackage.CreateDirectories() λ C:\Users\Stephen Brawner\workspace\solidworks_urdf_exporter\SW2URDF\URDFExport\URDFPackage.cs:к 78 + SW2URDF.URDFExport.ExportHelper.ExportRobot(Boolean exportSTL) λ C:\Users\Stephen Brawner\workspace\solidworks_urdf_exporter\SW2URDF\URDFExport\ExportHelper.cs:к 155 + SW2URDF.UI.AssemblyExportForm.FinishExport(Boolean exportSTL) λ C:\Users\Stephen Brawner\workspace\solidworks_urdf_exporter\SW2URDF\UI\AssemblyExportForm.cs:к 310 + SW2URDF.UI.AssemblyExportForm.ButtonLinksFinishClick(Object sender, EventArgs e) λ C:\Users\Stephen Brawner\workspace\solidworks_urdf_exporter\SW2URDF\UI\AssemblyExportForm.cs:к 243 + System.Windows.Forms.Control.OnClick(EventArgs e) + System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent) + System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) + System.Windows.Forms.Control.WndProc(Message& m) + System.Windows.Forms.ButtonBase.WndProc(Message& m) + System.Windows.Forms.Button.WndProc(Message& m) + System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) +2025-06-30 17:36:04,127 INFO AssemblyExportForm.cs: 253 - Completing URDF export +2025-06-30 17:36:04,129 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue0.4048941258416246-0.07417100006635545-0.25rpytrue000originfalsefalsevaluetrue36.238217315510852massfalseixxtrue0.711497711143894ixytrue-0.0013550472051328216ixztrue6.6231681645793542E-17iyytrue1.4652890963294924iyztrue8.3976025435473923E-17izztrue0.89078375214778915inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseOrigin_globallinktruenametruerightBackLeg1xyztrue0.159521553180004580.11419261166574446-0.0058382903590073615rpytrue000originfalsefalsevaluetrue37.750146705827078massfalseixxtrue0.73443178974580758ixytrue-8.5471449851092122E-17ixztrue-0.017248838214919144iyytrue0.92691679191609744iyztrue-2.1514268447883184E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruefixedxyztrue0.233470.13-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackHiplinktruenametruerightBackLeg2xyztrue-1.3877787807814457E-17-1.1102230246251565E-16-0.09809553293534734rpytrue000originfalsefalsevaluetrue2.9191351407279589massfalseixxtrue0.077483115922509033ixytrue7.9351860147188686E-19ixztrue2.7726436346497253E-19iyytrue0.075707583124541719iyztrue2.0708261494473135E-17izztrue0.0028668101441875313inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetruefixedxyztrue-0.17648-0.025-0.23237rpytrue0.6495601.5708originfalsefalselinktruerightBackLeg1parenttruelinktruerightBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackKneelinktruenametruerightBackWheelxyztrue0.0906437491267199640.119345179053195750.0095752430168192931rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.029015950238372373ixytrue-0.019190768056975942ixztrue-2.574253223478276E-18iyytrue0.01832418173296196iyztrue-3.7421378222781478E-18izztrue0.04669244794473458inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue-0.0150-0.57rpytrue1.5708-0.64956-1.5708originfalsefalselinktruerightBackLeg2parenttruelinktruerightBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue0.15952155318000449-0.11419261166574451-0.0058382903590074309rpytrue000originfalsefalsevaluetrue37.750146705827085massfalseixxtrue0.73443178974580758ixytrue-7.6545574943502289E-17ixztrue-0.017248838214919147iyytrue0.92691679191609744iyztrue-2.1268324565786637E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruefixedxyztrue0.233470.37-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackHiplinktruenametrueleftBackLeg2xyztrue-1.3877787807814457E-161.1102230246251565E-16-0.098095532935347146rpytrue000originfalsefalsevaluetrue2.9191351407279584massfalseixxtrue0.075707583124541677ixytrue-3.8877986498560283E-19ixztrue3.0357660829594109E-18iyytrue0.077483115922508977iyztrue-3.422180486960788E-18izztrue0.0028668101441875387inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetruefixedxyztrue-0.176480.025-0.23237rpytrue00.649560originfalsefalselinktrueleftBackLeg1parenttruelinktrueleftBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackKneelinktruenametrueleftBackWheelxyztrue-0.0906437491267199080.119345179053195750.0095752430168193348rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.02901595023837231ixytrue0.019190768056975914ixztrue-9.954601325645941E-19iyytrue0.018324181732961946iyztrue1.85841836801446E-18izztrue0.046692447944734504inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruefixedxyztrue00.015-0.57rpytrue1.57080.649563.1416originfalsefalselinktrueleftBackLeg2parenttruelinktrueleftBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue-0.118941133817545840.23627364448442775-0.00580806156002367rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095687ixytrue-8.0106543261857891E-17ixztrue0.014377444559300619iyytrue0.92519426863526311iyztrue-2.2168033915144858E-17izztrue1.4852068458017578inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruefixedxyztrue0.538110-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightFrountHiplinktruenametruerightFrountLeg2xyztrue-0.15013435250404195-0.084293727415587716-0.010000000000002063rpytrue000originfalsefalsevaluetrue2.4985935061359097massfalseixxtrue0.026533388814768594ixytrue-0.013712046094442831ixztrue-2.7972106599326071E-18iyytrue0.020494911676155358iyztrue-1.7318638437110483E-18izztrue0.046144108792916388inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruefixedxyztrue0.34043711489326334-0.014999999999998086-0.29428314733123562rpytrue-1.570796326794896600originfalsefalselinktruerightFrountLeg1parenttruelinktruerightFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountKneerightFrountKneelinktruenametruerightFrountWheelxyztrue0.0124502311028006350.0678549846910667660.020140014897849834rpytrue000originfalsefalsevaluetrue2.4342788882759447massfalseixxtrue0.018177567097784272ixytrue-0.0020204456699906047ixztrue4.3819014274299773E-18iyytrue0.0075366566539683683iyztrue-5.3953207991625215E-18izztrue0.025179229208706792inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruefixedxyztrue-0.0812115982488985640.44261120219653216-0.020000000000000025rpytrue3.141592653589793100originfalsefalselinktruerightFrountLeg2parenttruelinktruerightFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountAnklerightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue-0.118941133817548-0.23627364448442784-0.0058080615600213659rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095709ixytrue-7.0695850236199268E-17ixztrue0.01437744455930063iyytrue0.92519426863526311iyztrue-3.3879553223792215E-17izztrue1.4852068458017582inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruefixedxyztrue0.53811424332223090.50000000000000011-0.074999999999958045rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountHipleftFrountHiplinktruenametrueleftFrountLeg2xyztrue-0.15013435250404261-0.0842937274155939890.010000000000003451rpytrue000originfalsefalsevaluetrue2.4985935061359119massfalseixxtrue0.026533388814768605ixytrue-0.013712046094442796ixztrue-6.4111159988788295E-19iyytrue0.02049491167615539iyztrue-3.8649861932360607E-18izztrue0.04614410879291643inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruefixedxyztrue0.340437114893262890.014999999999995572-0.29428314733123639rpytrue-1.57079632679489700originfalsefalselinktrueleftFrountLeg1parenttruelinktrueleftFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountKneeleftFrountKneelinktruenametrueleftFrountWheelxyztrue-0.0124502311028042990.0678549846910666550.020140014897851333rpytrue000originfalsefalsevaluetrue2.4342788882759439massfalseixxtrue0.018177567097784272ixytrue0.0020204456699906542ixztrue3.2484994461059574E-19iyytrue0.00753665665396838iyztrue-9.11376586957131E-19izztrue0.0251792292087068inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruefixedxyztrue-0.08121159824890190.442611202196531490.020000000000000129rpytrue003.1415926535897931originfalsefalselinktrueleftFrountLeg2parenttruelinktrueleftFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountAnkleleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:36:26,408 INFO AssemblyExportForm.cs: 309 - Saving URDF package to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM +2025-06-30 17:36:26,409 INFO ExportHelper.cs: 147 - Beginning the export process +2025-06-30 17:36:26,409 INFO ExportHelper.cs: 153 - Creating package directories with name װ.SLDASM and save path D:\7_HiveCore\1_RD\1_˫Ŀ\\V2 +2025-06-30 17:36:29,421 INFO ExportHelper.cs: 162 - Creating CMakeLists.txt at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\CMakeLists.txt +2025-06-30 17:36:29,422 INFO ExportHelper.cs: 166 - Creating joint names config at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\config\joint_names_װ.SLDASM.yaml +2025-06-30 17:36:29,423 INFO ExportHelper.cs: 170 - Creating package.xml at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\package.xml +2025-06-30 17:36:29,423 INFO PackageXMLWriter.cs: 21 - Creating package.xml at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\package.xml +2025-06-30 17:36:29,425 INFO ExportHelper.cs: 177 - Creating RVIZ launch file in D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\launch\ +2025-06-30 17:36:29,427 INFO ExportHelper.cs: 182 - Creating Gazebo launch file in D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\launch\ +2025-06-30 17:36:29,428 INFO ExportHelper.cs: 187 - Saving existing STL preferences +2025-06-30 17:36:29,428 INFO ExportHelper.cs: 450 - Saving users preferences +2025-06-30 17:36:29,429 INFO ExportHelper.cs: 190 - Modifying STL preferences +2025-06-30 17:36:29,430 INFO ExportHelper.cs: 464 - Setting STL preferences +2025-06-30 17:36:29,435 INFO ExportHelper.cs: 196 - Found 0 hidden components +2025-06-30 17:36:29,435 INFO ExportHelper.cs: 197 - Hiding all components +2025-06-30 17:36:29,553 INFO ExportHelper.cs: 204 - Beginning individual files export +2025-06-30 17:36:29,569 INFO ExportHelper.cs: 270 - Exporting link: base_link +2025-06-30 17:36:29,570 INFO ExportHelper.cs: 272 - Link base_link has 4 children +2025-06-30 17:36:29,570 INFO ExportHelper.cs: 270 - Exporting link: rightBackLeg1 +2025-06-30 17:36:29,571 INFO ExportHelper.cs: 272 - Link rightBackLeg1 has 1 children +2025-06-30 17:36:29,572 INFO ExportHelper.cs: 270 - Exporting link: rightBackLeg2 +2025-06-30 17:36:29,572 INFO ExportHelper.cs: 272 - Link rightBackLeg2 has 1 children +2025-06-30 17:36:29,573 INFO ExportHelper.cs: 270 - Exporting link: rightBackWheel +2025-06-30 17:36:29,573 INFO ExportHelper.cs: 272 - Link rightBackWheel has 0 children +2025-06-30 17:36:29,574 INFO ExportHelper.cs: 317 - rightBackWheel: Exporting STL with coordinate frame rightBackAnkle +2025-06-30 17:36:29,574 INFO ExportHelper.cs: 322 - rightBackWheel: Reference geometry name +2025-06-30 17:36:29,596 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightBackWheel.STL +2025-06-30 17:36:29,739 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:29,739 INFO ExportHelper.cs: 317 - rightBackLeg2: Exporting STL with coordinate frame rightBackKnee +2025-06-30 17:36:29,740 INFO ExportHelper.cs: 322 - rightBackLeg2: Reference geometry name +2025-06-30 17:36:29,757 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightBackLeg2.STL +2025-06-30 17:36:29,845 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:29,846 INFO ExportHelper.cs: 317 - rightBackLeg1: Exporting STL with coordinate frame rightBackHip +2025-06-30 17:36:29,846 INFO ExportHelper.cs: 322 - rightBackLeg1: Reference geometry name +2025-06-30 17:36:29,916 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightBackLeg1.STL +2025-06-30 17:36:30,033 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,034 INFO ExportHelper.cs: 270 - Exporting link: leftBackLeg1 +2025-06-30 17:36:30,035 INFO ExportHelper.cs: 272 - Link leftBackLeg1 has 1 children +2025-06-30 17:36:30,036 INFO ExportHelper.cs: 270 - Exporting link: leftBackLeg2 +2025-06-30 17:36:30,036 INFO ExportHelper.cs: 272 - Link leftBackLeg2 has 1 children +2025-06-30 17:36:30,037 INFO ExportHelper.cs: 270 - Exporting link: leftBackWheel +2025-06-30 17:36:30,037 INFO ExportHelper.cs: 272 - Link leftBackWheel has 0 children +2025-06-30 17:36:30,037 INFO ExportHelper.cs: 317 - leftBackWheel: Exporting STL with coordinate frame leftBackAnkle +2025-06-30 17:36:30,037 INFO ExportHelper.cs: 322 - leftBackWheel: Reference geometry name +2025-06-30 17:36:30,080 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftBackWheel.STL +2025-06-30 17:36:30,158 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,159 INFO ExportHelper.cs: 317 - leftBackLeg2: Exporting STL with coordinate frame leftBackKnee +2025-06-30 17:36:30,159 INFO ExportHelper.cs: 322 - leftBackLeg2: Reference geometry name +2025-06-30 17:36:30,177 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftBackLeg2.STL +2025-06-30 17:36:30,266 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,267 INFO ExportHelper.cs: 317 - leftBackLeg1: Exporting STL with coordinate frame leftBackHip +2025-06-30 17:36:30,267 INFO ExportHelper.cs: 322 - leftBackLeg1: Reference geometry name +2025-06-30 17:36:30,343 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftBackLeg1.STL +2025-06-30 17:36:30,485 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,487 INFO ExportHelper.cs: 270 - Exporting link: rightFrountLeg1 +2025-06-30 17:36:30,487 INFO ExportHelper.cs: 272 - Link rightFrountLeg1 has 1 children +2025-06-30 17:36:30,488 INFO ExportHelper.cs: 270 - Exporting link: rightFrountLeg2 +2025-06-30 17:36:30,488 INFO ExportHelper.cs: 272 - Link rightFrountLeg2 has 1 children +2025-06-30 17:36:30,497 INFO ExportHelper.cs: 270 - Exporting link: rightFrountWheel +2025-06-30 17:36:30,498 INFO ExportHelper.cs: 272 - Link rightFrountWheel has 0 children +2025-06-30 17:36:30,498 INFO ExportHelper.cs: 317 - rightFrountWheel: Exporting STL with coordinate frame rightFrountAnkle +2025-06-30 17:36:30,498 INFO ExportHelper.cs: 322 - rightFrountWheel: Reference geometry name +2025-06-30 17:36:30,528 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightFrountWheel.STL +2025-06-30 17:36:30,637 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,637 INFO ExportHelper.cs: 317 - rightFrountLeg2: Exporting STL with coordinate frame rightFrountKnee +2025-06-30 17:36:30,638 INFO ExportHelper.cs: 322 - rightFrountLeg2: Reference geometry name +2025-06-30 17:36:30,660 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightFrountLeg2.STL +2025-06-30 17:36:30,747 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:30,747 INFO ExportHelper.cs: 317 - rightFrountLeg1: Exporting STL with coordinate frame rightFrountHip +2025-06-30 17:36:30,748 INFO ExportHelper.cs: 322 - rightFrountLeg1: Reference geometry name +2025-06-30 17:36:30,875 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\rightFrountLeg1.STL +2025-06-30 17:36:31,014 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:31,016 INFO ExportHelper.cs: 270 - Exporting link: leftFrountLeg1 +2025-06-30 17:36:31,017 INFO ExportHelper.cs: 272 - Link leftFrountLeg1 has 1 children +2025-06-30 17:36:31,018 INFO ExportHelper.cs: 270 - Exporting link: leftFrountLeg2 +2025-06-30 17:36:31,018 INFO ExportHelper.cs: 272 - Link leftFrountLeg2 has 1 children +2025-06-30 17:36:31,019 INFO ExportHelper.cs: 270 - Exporting link: leftFrountWheel +2025-06-30 17:36:31,019 INFO ExportHelper.cs: 272 - Link leftFrountWheel has 0 children +2025-06-30 17:36:31,019 INFO ExportHelper.cs: 317 - leftFrountWheel: Exporting STL with coordinate frame leftFrountAnkle +2025-06-30 17:36:31,019 INFO ExportHelper.cs: 322 - leftFrountWheel: Reference geometry name +2025-06-30 17:36:31,050 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftFrountWheel.STL +2025-06-30 17:36:31,142 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:31,143 INFO ExportHelper.cs: 317 - leftFrountLeg2: Exporting STL with coordinate frame leftFrountKnee +2025-06-30 17:36:31,143 INFO ExportHelper.cs: 322 - leftFrountLeg2: Reference geometry name +2025-06-30 17:36:31,188 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftFrountLeg2.STL +2025-06-30 17:36:31,278 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:31,279 INFO ExportHelper.cs: 317 - leftFrountLeg1: Exporting STL with coordinate frame leftFrountHip +2025-06-30 17:36:31,279 INFO ExportHelper.cs: 322 - leftFrountLeg1: Reference geometry name +2025-06-30 17:36:31,366 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\leftFrountLeg1.STL +2025-06-30 17:36:31,501 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:31,501 INFO ExportHelper.cs: 317 - base_link: Exporting STL with coordinate frame Origin_global +2025-06-30 17:36:31,502 INFO ExportHelper.cs: 322 - base_link: Reference geometry name +2025-06-30 17:36:31,602 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\meshes\base_link.STL +2025-06-30 17:36:31,712 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:36:31,712 INFO ExportHelper.cs: 145 - Showing all components except previously hidden components +2025-06-30 17:36:31,893 INFO ExportHelper.cs: 145 - Resetting STL preferences +2025-06-30 17:36:31,893 INFO ExportHelper.cs: 478 - Returning STL preferences to user preferences +2025-06-30 17:36:31,894 INFO ExportHelper.cs: 228 - Writing URDF file to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\urdf\װ.SLDASM.urdf +2025-06-30 17:36:31,977 INFO CSVImportExport.cs: 32 - Writing CSV file D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\urdf\װ.SLDASM.csv +2025-06-30 17:36:31,996 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,997 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,998 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,998 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,998 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,998 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,999 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,999 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:31,999 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:32,000 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:32,000 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:32,000 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:32,000 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:36:32,001 INFO ExportHelper.cs: 234 - Copying log file +2025-06-30 17:36:32,001 INFO ExportHelper.cs: 439 - Copying C:\Users\Ray\sw2urdf_logs\sw2urdf.log to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\װ.SLDASM\export.log +2025-06-30 17:36:32,003 INFO ExportHelper.cs: 237 - Resetting STL preferences +2025-06-30 17:36:32,003 INFO ExportHelper.cs: 478 - Returning STL preferences to user preferences +2025-06-30 17:39:43,516 INFO SwAddin.cs: 294 - Assembly export called for file װ.SLDASM +2025-06-30 17:39:43,517 INFO SwAddin.cs: 299 - Save is required +2025-06-30 17:39:43,517 INFO SwAddin.cs: 313 - Saving assembly +2025-06-30 17:39:43,729 INFO SwAddin.cs: 316 - Opening property manager +2025-06-30 17:39:43,730 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:39:43,731 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:39:43,731 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:39:43,732 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:39:43,734 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:39:43,734 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:39:43,753 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:39:43,754 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:39:43,754 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:39:43,755 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:39:43,755 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:39:43,755 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:39:43,755 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:39:43,756 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:39:43,756 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:39:43,756 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:39:43,757 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:39:43,757 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:39:43,757 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:39:43,757 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:39:43,757 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:39:43,758 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:39:43,758 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:39:43,758 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:39:43,759 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:39:43,759 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:39:43,759 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:39:43,759 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:39:43,760 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:39:43,760 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:39:43,760 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:39:43,760 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:39:43,761 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:39:43,761 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:39:43,761 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:39:43,761 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:39:43,763 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:39:43,763 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:39:43,763 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:39:43,763 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:39:43,764 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:39:43,764 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:39:43,764 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:39:43,764 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:39:43,765 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:39:43,765 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:39:43,766 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:39:43,766 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:39:43,766 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:39:43,766 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:39:43,766 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:39:43,767 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:39:43,767 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:39:43,767 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:39:43,768 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:39:43,768 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:39:43,768 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:39:43,768 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:39:43,769 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:39:43,769 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:39:43,769 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:39:43,769 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:39:43,770 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:39:43,770 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:39:43,770 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:39:43,770 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:39:43,771 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:39:43,771 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:39:43,771 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:39:43,772 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:39:43,772 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:39:43,772 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:39:43,773 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:39:43,773 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:39:43,773 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:39:43,773 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:39:43,774 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:39:43,774 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:39:43,774 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:39:43,774 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:39:43,775 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:39:43,775 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:39:43,775 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:39:43,776 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:39:43,776 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:39:43,776 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:39:43,776 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:39:43,777 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:39:43,903 INFO SwAddin.cs: 339 - Loading config tree +2025-06-30 17:39:43,904 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue0.4048941258416246-0.07417100006635545-0.25rpytrue000originfalsefalsevaluetrue36.238217315510852massfalseixxtrue0.711497711143894ixytrue-0.0013550472051328216ixztrue6.6231681645793542E-17iyytrue1.4652890963294924iyztrue8.3976025435473923E-17izztrue0.89078375214778915inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseOrigin_globallinktruenametruerightBackLeg1xyztrue0.159521553180004580.11419261166574446-0.0058382903590073615rpytrue000originfalsefalsevaluetrue37.750146705827078massfalseixxtrue0.73443178974580758ixytrue-8.5471449851092122E-17ixztrue-0.017248838214919144iyytrue0.92691679191609744iyztrue-2.1514268447883184E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruefixedxyztrue0.233470.13-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackHiplinktruenametruerightBackLeg2xyztrue-1.3877787807814457E-17-1.1102230246251565E-16-0.09809553293534734rpytrue000originfalsefalsevaluetrue2.9191351407279589massfalseixxtrue0.077483115922509033ixytrue7.9351860147188686E-19ixztrue2.7726436346497253E-19iyytrue0.075707583124541719iyztrue2.0708261494473135E-17izztrue0.0028668101441875313inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetruefixedxyztrue-0.17648-0.025-0.23237rpytrue0.6495601.5708originfalsefalselinktruerightBackLeg1parenttruelinktruerightBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackKneelinktruenametruerightBackWheelxyztrue0.0906437491267199640.119345179053195750.0095752430168192931rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.029015950238372373ixytrue-0.019190768056975942ixztrue-2.574253223478276E-18iyytrue0.01832418173296196iyztrue-3.7421378222781478E-18izztrue0.04669244794473458inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue-0.0150-0.57rpytrue1.5708-0.64956-1.5708originfalsefalselinktruerightBackLeg2parenttruelinktruerightBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue0.15952155318000449-0.11419261166574451-0.0058382903590074309rpytrue000originfalsefalsevaluetrue37.750146705827085massfalseixxtrue0.73443178974580758ixytrue-7.6545574943502289E-17ixztrue-0.017248838214919147iyytrue0.92691679191609744iyztrue-2.1268324565786637E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruefixedxyztrue0.233470.37-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackHiplinktruenametrueleftBackLeg2xyztrue-1.3877787807814457E-161.1102230246251565E-16-0.098095532935347146rpytrue000originfalsefalsevaluetrue2.9191351407279584massfalseixxtrue0.075707583124541677ixytrue-3.8877986498560283E-19ixztrue3.0357660829594109E-18iyytrue0.077483115922508977iyztrue-3.422180486960788E-18izztrue0.0028668101441875387inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetruefixedxyztrue-0.176480.025-0.23237rpytrue00.649560originfalsefalselinktrueleftBackLeg1parenttruelinktrueleftBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackKneelinktruenametrueleftBackWheelxyztrue-0.0906437491267199080.119345179053195750.0095752430168193348rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.02901595023837231ixytrue0.019190768056975914ixztrue-9.954601325645941E-19iyytrue0.018324181732961946iyztrue1.85841836801446E-18izztrue0.046692447944734504inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruefixedxyztrue00.015-0.57rpytrue1.57080.649563.1416originfalsefalselinktrueleftBackLeg2parenttruelinktrueleftBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue-0.118941133817545840.23627364448442775-0.00580806156002367rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095687ixytrue-8.0106543261857891E-17ixztrue0.014377444559300619iyytrue0.92519426863526311iyztrue-2.2168033915144858E-17izztrue1.4852068458017578inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruefixedxyztrue0.538110-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightFrountHiplinktruenametruerightFrountLeg2xyztrue-0.15013435250404195-0.084293727415587716-0.010000000000002063rpytrue000originfalsefalsevaluetrue2.4985935061359097massfalseixxtrue0.026533388814768594ixytrue-0.013712046094442831ixztrue-2.7972106599326071E-18iyytrue0.020494911676155358iyztrue-1.7318638437110483E-18izztrue0.046144108792916388inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruefixedxyztrue0.34043711489326334-0.014999999999998086-0.29428314733123562rpytrue-1.570796326794896600originfalsefalselinktruerightFrountLeg1parenttruelinktruerightFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountKneerightFrountKneelinktruenametruerightFrountWheelxyztrue0.0124502311028006350.0678549846910667660.020140014897849834rpytrue000originfalsefalsevaluetrue2.4342788882759447massfalseixxtrue0.018177567097784272ixytrue-0.0020204456699906047ixztrue4.3819014274299773E-18iyytrue0.0075366566539683683iyztrue-5.3953207991625215E-18izztrue0.025179229208706792inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruefixedxyztrue-0.0812115982488985640.44261120219653216-0.020000000000000025rpytrue3.141592653589793100originfalsefalselinktruerightFrountLeg2parenttruelinktruerightFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountAnklerightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue-0.118941133817548-0.23627364448442784-0.0058080615600213659rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095709ixytrue-7.0695850236199268E-17ixztrue0.01437744455930063iyytrue0.92519426863526311iyztrue-3.3879553223792215E-17izztrue1.4852068458017582inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruefixedxyztrue0.53811424332223090.50000000000000011-0.074999999999958045rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountHipleftFrountHiplinktruenametrueleftFrountLeg2xyztrue-0.15013435250404261-0.0842937274155939890.010000000000003451rpytrue000originfalsefalsevaluetrue2.4985935061359119massfalseixxtrue0.026533388814768605ixytrue-0.013712046094442796ixztrue-6.4111159988788295E-19iyytrue0.02049491167615539iyztrue-3.8649861932360607E-18izztrue0.04614410879291643inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruefixedxyztrue0.340437114893262890.014999999999995572-0.29428314733123639rpytrue-1.57079632679489700originfalsefalselinktrueleftFrountLeg1parenttruelinktrueleftFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountKneeleftFrountKneelinktruenametrueleftFrountWheelxyztrue-0.0124502311028042990.0678549846910666550.020140014897851333rpytrue000originfalsefalsevaluetrue2.4342788882759439massfalseixxtrue0.018177567097784272ixytrue0.0020204456699906542ixztrue3.2484994461059574E-19iyytrue0.00753665665396838iyztrue-9.11376586957131E-19izztrue0.0251792292087068inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruefixedxyztrue-0.08121159824890190.442611202196531490.020000000000000129rpytrue003.1415926535897931originfalsefalselinktrueleftFrountLeg2parenttruelinktrueleftFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountAnkleleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:39:43,909 INFO LinkNode.cs: 35 - Building node base_link +2025-06-30 17:39:43,909 INFO LinkNode.cs: 35 - Building node rightBackLeg1 +2025-06-30 17:39:43,909 INFO LinkNode.cs: 35 - Building node rightBackLeg2 +2025-06-30 17:39:43,910 INFO LinkNode.cs: 35 - Building node rightBackWheel +2025-06-30 17:39:43,910 INFO LinkNode.cs: 35 - Building node leftBackLeg1 +2025-06-30 17:39:43,910 INFO LinkNode.cs: 35 - Building node leftBackLeg2 +2025-06-30 17:39:43,910 INFO LinkNode.cs: 35 - Building node leftBackWheel +2025-06-30 17:39:43,910 INFO LinkNode.cs: 35 - Building node rightFrountLeg1 +2025-06-30 17:39:43,911 INFO LinkNode.cs: 35 - Building node rightFrountLeg2 +2025-06-30 17:39:43,911 INFO LinkNode.cs: 35 - Building node rightFrountWheel +2025-06-30 17:39:43,911 INFO LinkNode.cs: 35 - Building node leftFrountLeg1 +2025-06-30 17:39:43,911 INFO LinkNode.cs: 35 - Building node leftFrountLeg2 +2025-06-30 17:39:43,911 INFO LinkNode.cs: 35 - Building node leftFrountWheel +2025-06-30 17:39:43,912 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for base_link from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,912 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:39:43,912 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,912 INFO CommonSwOperations.cs: 230 - Loaded 1 components for link base_link +2025-06-30 17:39:43,913 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,913 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:39:43,913 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,913 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:39:43,914 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:39:43,914 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg1 +2025-06-30 17:39:43,914 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,914 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-3@?] z7h:g??M?h +2025-06-30 17:39:43,914 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:39:43,915 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:39:43,915 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:39:43,915 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackLeg2 +2025-06-30 17:39:43,915 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightBackWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,915 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-3@?] z7h:g??M?x +2025-06-30 17:39:43,916 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:39:43,916 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? Tn?-2@?] z7h:g??M?? +2025-06-30 17:39:43,916 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,916 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightBackWheel +2025-06-30 17:39:43,917 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,917 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:39:43,917 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,917 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:39:43,917 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:39:43,918 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackLeg1 +2025-06-30 17:39:43,918 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,918 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?2-5@?] z7h:g??M?? +2025-06-30 17:39:43,918 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\2.SLDPRT +2025-06-30 17:39:43,919 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-4@?] z7h:g??M?? +2025-06-30 17:39:43,919 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:39:43,919 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackLeg2 +2025-06-30 17:39:43,919 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftBackWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,919 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?2-4@?] z7h:g??M?? +2025-06-30 17:39:43,920 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С2.SLDPRT +2025-06-30 17:39:43,920 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? Tn?-1@?] z7h:g??M?? +2025-06-30 17:39:43,920 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,920 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftBackWheel +2025-06-30 17:39:43,921 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,921 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:39:43,924 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,924 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-3@?] z7h:g??M?W +2025-06-30 17:39:43,924 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:39:43,925 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountLeg1 +2025-06-30 17:39:43,925 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,925 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-3@?] z7h:g??M?W +2025-06-30 17:39:43,925 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:39:43,925 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-3@?] z7h:g??M?c +2025-06-30 17:39:43,926 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:39:43,926 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountLeg2 +2025-06-30 17:39:43,926 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for rightFrountWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,926 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-3@?] z7h:g??M?c +2025-06-30 17:39:43,926 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:39:43,927 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? MRn?-1@?] z7h:g??M?? +2025-06-30 17:39:43,927 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\ǰ.SLDPRT +2025-06-30 17:39:43,927 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link rightFrountWheel +2025-06-30 17:39:43,927 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountLeg1 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,927 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? ?W?^-2@?] z7h:g??M?U +2025-06-30 17:39:43,928 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\.SLDPRT +2025-06-30 17:39:43,928 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-4@?] z7h:g??M?? +2025-06-30 17:39:43,928 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:39:43,928 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountLeg1 +2025-06-30 17:39:43,928 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountLeg2 from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,929 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? 'Y?1-4@?] z7h:g??M?? +2025-06-30 17:39:43,929 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\1.SLDPRT +2025-06-30 17:39:43,929 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-4@?] z7h:g??M?? +2025-06-30 17:39:43,929 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:39:43,930 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountLeg2 +2025-06-30 17:39:43,930 INFO CommonSwOperations.cs: 221 - Loading SolidWorks components for leftFrountWheel from D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\װ.SLDASM +2025-06-30 17:39:43,930 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? \?1-4@?] z7h:g??M?? +2025-06-30 17:39:43,930 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\С1.SLDPRT +2025-06-30 17:39:43,930 INFO CommonSwOperations.cs: 245 - Loading component with PID hB??? MRn?-2@?] z7h:g??M?? +2025-06-30 17:39:43,932 INFO CommonSwOperations.cs: 254 - Successfully loaded component D:\7_HiveCore\1_RD\1_˫Ŀ\\V1\ǰ.SLDPRT +2025-06-30 17:39:43,932 INFO CommonSwOperations.cs: 230 - Loaded 2 components for link leftFrountWheel +2025-06-30 17:39:43,962 INFO SwAddin.cs: 344 - Showing property manager +2025-06-30 17:39:45,906 INFO ExportPropertyManager.cs: 422 - Configuration saved +2025-06-30 17:39:45,908 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue0.4048941258416246-0.07417100006635545-0.25rpytrue000originfalsefalsevaluetrue36.238217315510852massfalseixxtrue0.711497711143894ixytrue-0.0013550472051328216ixztrue6.6231681645793542E-17iyytrue1.4652890963294924iyztrue8.3976025435473923E-17izztrue0.89078375214778915inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseOrigin_globallinktruenametruerightBackLeg1xyztrue0.159521553180004580.11419261166574446-0.0058382903590073615rpytrue000originfalsefalsevaluetrue37.750146705827078massfalseixxtrue0.73443178974580758ixytrue-8.5471449851092122E-17ixztrue-0.017248838214919144iyytrue0.92691679191609744iyztrue-2.1514268447883184E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruefixedxyztrue0.233470.13-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackHiplinktruenametruerightBackLeg2xyztrue-1.3877787807814457E-17-1.1102230246251565E-16-0.09809553293534734rpytrue000originfalsefalsevaluetrue2.9191351407279589massfalseixxtrue0.077483115922509033ixytrue7.9351860147188686E-19ixztrue2.7726436346497253E-19iyytrue0.075707583124541719iyztrue2.0708261494473135E-17izztrue0.0028668101441875313inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetruefixedxyztrue-0.17648-0.025-0.23237rpytrue0.6495601.5708originfalsefalselinktruerightBackLeg1parenttruelinktruerightBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackKneelinktruenametruerightBackWheelxyztrue0.0906437491267199640.119345179053195750.0095752430168192931rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.029015950238372373ixytrue-0.019190768056975942ixztrue-2.574253223478276E-18iyytrue0.01832418173296196iyztrue-3.7421378222781478E-18izztrue0.04669244794473458inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue-0.0150-0.57rpytrue1.5708-0.64956-1.5708originfalsefalselinktruerightBackLeg2parenttruelinktruerightBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue0.15952155318000449-0.11419261166574451-0.0058382903590074309rpytrue000originfalsefalsevaluetrue37.750146705827085massfalseixxtrue0.73443178974580758ixytrue-7.6545574943502289E-17ixztrue-0.017248838214919147iyytrue0.92691679191609744iyztrue-2.1268324565786637E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruefixedxyztrue0.233470.37-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackHiplinktruenametrueleftBackLeg2xyztrue-1.3877787807814457E-161.1102230246251565E-16-0.098095532935347146rpytrue000originfalsefalsevaluetrue2.9191351407279584massfalseixxtrue0.075707583124541677ixytrue-3.8877986498560283E-19ixztrue3.0357660829594109E-18iyytrue0.077483115922508977iyztrue-3.422180486960788E-18izztrue0.0028668101441875387inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetruefixedxyztrue-0.176480.025-0.23237rpytrue00.649560originfalsefalselinktrueleftBackLeg1parenttruelinktrueleftBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackKneelinktruenametrueleftBackWheelxyztrue-0.0906437491267199080.119345179053195750.0095752430168193348rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.02901595023837231ixytrue0.019190768056975914ixztrue-9.954601325645941E-19iyytrue0.018324181732961946iyztrue1.85841836801446E-18izztrue0.046692447944734504inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruefixedxyztrue00.015-0.57rpytrue1.57080.649563.1416originfalsefalselinktrueleftBackLeg2parenttruelinktrueleftBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue-0.118941133817545840.23627364448442775-0.00580806156002367rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095687ixytrue-8.0106543261857891E-17ixztrue0.014377444559300619iyytrue0.92519426863526311iyztrue-2.2168033915144858E-17izztrue1.4852068458017578inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruefixedxyztrue0.538110-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightFrountHiplinktruenametruerightFrountLeg2xyztrue-0.15013435250404195-0.084293727415587716-0.010000000000002063rpytrue000originfalsefalsevaluetrue2.4985935061359097massfalseixxtrue0.026533388814768594ixytrue-0.013712046094442831ixztrue-2.7972106599326071E-18iyytrue0.020494911676155358iyztrue-1.7318638437110483E-18izztrue0.046144108792916388inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruefixedxyztrue0.34043711489326334-0.014999999999998086-0.29428314733123562rpytrue-1.570796326794896600originfalsefalselinktruerightFrountLeg1parenttruelinktruerightFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountKneerightFrountKneelinktruenametruerightFrountWheelxyztrue0.0124502311028006350.0678549846910667660.020140014897849834rpytrue000originfalsefalsevaluetrue2.4342788882759447massfalseixxtrue0.018177567097784272ixytrue-0.0020204456699906047ixztrue4.3819014274299773E-18iyytrue0.0075366566539683683iyztrue-5.3953207991625215E-18izztrue0.025179229208706792inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruefixedxyztrue-0.0812115982488985640.44261120219653216-0.020000000000000025rpytrue3.141592653589793100originfalsefalselinktruerightFrountLeg2parenttruelinktruerightFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountAnklerightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue-0.118941133817548-0.23627364448442784-0.0058080615600213659rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095709ixytrue-7.0695850236199268E-17ixztrue0.01437744455930063iyytrue0.92519426863526311iyztrue-3.3879553223792215E-17izztrue1.4852068458017582inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruefixedxyztrue0.53811424332223090.50000000000000011-0.074999999999958045rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountHipleftFrountHiplinktruenametrueleftFrountLeg2xyztrue-0.15013435250404261-0.0842937274155939890.010000000000003451rpytrue000originfalsefalsevaluetrue2.4985935061359119massfalseixxtrue0.026533388814768605ixytrue-0.013712046094442796ixztrue-6.4111159988788295E-19iyytrue0.02049491167615539iyztrue-3.8649861932360607E-18izztrue0.04614410879291643inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruefixedxyztrue0.340437114893262890.014999999999995572-0.29428314733123639rpytrue-1.57079632679489700originfalsefalselinktrueleftFrountLeg1parenttruelinktrueleftFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountKneeleftFrountKneelinktruenametrueleftFrountWheelxyztrue-0.0124502311028042990.0678549846910666550.020140014897851333rpytrue000originfalsefalsevaluetrue2.4342788882759439massfalseixxtrue0.018177567097784272ixytrue0.0020204456699906542ixztrue3.2484994461059574E-19iyytrue0.00753665665396838iyztrue-9.11376586957131E-19izztrue0.0251792292087068inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruefixedxyztrue-0.08121159824890190.442611202196531490.020000000000000129rpytrue003.1415926535897931originfalsefalselinktrueleftFrountLeg2parenttruelinktrueleftFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountAnkleleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:39:46,007 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg1 +2025-06-30 17:39:46,007 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:39:46,007 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:46,236 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:46,236 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:46,237 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:46,237 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:46,237 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:46,466 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightBackLeg1 failed +2025-06-30 17:39:46,474 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackLeg2 +2025-06-30 17:39:46,474 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg1 +2025-06-30 17:39:46,474 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:46,475 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:39:46,475 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:46,724 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:46,724 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:46,724 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:46,725 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:46,725 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:46,725 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:39:46,725 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:46,979 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg1 to child rightBackLeg2 failed +2025-06-30 17:39:46,985 INFO ExportHelperExtension.cs: 347 - Creating joint rightBackWheel +2025-06-30 17:39:46,985 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightBackLeg2 +2025-06-30 17:39:46,985 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:39:46,986 INFO ExportHelperExtension.cs: 1402 - Fixing 120 +2025-06-30 17:39:46,986 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:46,986 INFO ExportHelperExtension.cs: 1402 - Fixing 104 +2025-06-30 17:39:46,986 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:47,263 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:47,264 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:47,264 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:47,264 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:47,264 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:39:47,265 INFO ExportHelperExtension.cs: 1352 - Unfixing component 120 +2025-06-30 17:39:47,265 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:47,265 INFO ExportHelperExtension.cs: 1352 - Unfixing component 104 +2025-06-30 17:39:47,265 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:47,602 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightBackLeg2 to child rightBackWheel failed +2025-06-30 17:39:47,607 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg1 +2025-06-30 17:39:47,607 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:39:47,608 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:48,086 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:48,087 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:48,087 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:48,087 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:48,087 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:48,517 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftBackLeg1 failed +2025-06-30 17:39:48,524 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackLeg2 +2025-06-30 17:39:48,525 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg1 +2025-06-30 17:39:48,525 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:48,525 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:39:48,525 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:49,091 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:49,092 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:49,092 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:49,092 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:49,093 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:49,093 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:39:49,093 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:49,681 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg1 to child leftBackLeg2 failed +2025-06-30 17:39:49,687 INFO ExportHelperExtension.cs: 347 - Creating joint leftBackWheel +2025-06-30 17:39:49,687 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftBackLeg2 +2025-06-30 17:39:49,687 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:39:49,688 INFO ExportHelperExtension.cs: 1402 - Fixing 167 +2025-06-30 17:39:49,688 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:49,688 INFO ExportHelperExtension.cs: 1402 - Fixing 166 +2025-06-30 17:39:49,688 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:50,257 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:50,258 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:50,258 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:50,258 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:50,259 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:39:50,259 INFO ExportHelperExtension.cs: 1352 - Unfixing component 167 +2025-06-30 17:39:50,259 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:50,259 INFO ExportHelperExtension.cs: 1352 - Unfixing component 166 +2025-06-30 17:39:50,259 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:50,825 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftBackLeg2 to child leftBackWheel failed +2025-06-30 17:39:50,831 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg1 +2025-06-30 17:39:50,831 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:39:50,832 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:51,330 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:51,330 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:51,330 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:51,331 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:51,331 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:51,820 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child rightFrountLeg1 failed +2025-06-30 17:39:51,826 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountLeg2 +2025-06-30 17:39:51,827 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg1 +2025-06-30 17:39:51,827 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:51,827 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:39:51,828 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:52,349 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:52,349 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:52,350 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:52,350 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:52,387 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:52,387 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:39:52,387 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:52,916 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg1 to child rightFrountLeg2 failed +2025-06-30 17:39:52,923 INFO ExportHelperExtension.cs: 347 - Creating joint rightFrountWheel +2025-06-30 17:39:52,923 INFO ExportHelperExtension.cs: 1397 - Fixing components for rightFrountLeg2 +2025-06-30 17:39:52,923 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:39:52,923 INFO ExportHelperExtension.cs: 1402 - Fixing 99 +2025-06-30 17:39:52,925 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:52,925 INFO ExportHelperExtension.cs: 1402 - Fixing 87 +2025-06-30 17:39:52,925 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:53,485 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:53,485 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:53,486 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:53,486 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:53,486 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:39:53,486 INFO ExportHelperExtension.cs: 1352 - Unfixing component 99 +2025-06-30 17:39:53,487 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:53,487 INFO ExportHelperExtension.cs: 1352 - Unfixing component 87 +2025-06-30 17:39:53,487 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:54,069 WARN ExportHelperExtension.cs: 351 - Creating joint from parent rightFrountLeg2 to child rightFrountWheel failed +2025-06-30 17:39:54,074 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg1 +2025-06-30 17:39:54,074 INFO ExportHelperExtension.cs: 1397 - Fixing components for base_link +2025-06-30 17:39:54,074 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:54,590 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:54,591 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:54,591 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:54,591 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:54,591 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:55,088 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child leftFrountLeg1 failed +2025-06-30 17:39:55,095 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountLeg2 +2025-06-30 17:39:55,095 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg1 +2025-06-30 17:39:55,095 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:55,096 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:39:55,096 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:55,567 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:55,568 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:55,568 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:55,568 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:55,568 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:55,569 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:39:55,569 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:56,059 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg1 to child leftFrountLeg2 failed +2025-06-30 17:39:56,064 INFO ExportHelperExtension.cs: 347 - Creating joint leftFrountWheel +2025-06-30 17:39:56,065 INFO ExportHelperExtension.cs: 1397 - Fixing components for leftFrountLeg2 +2025-06-30 17:39:56,065 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:39:56,065 INFO ExportHelperExtension.cs: 1402 - Fixing 140 +2025-06-30 17:39:56,065 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:56,066 INFO ExportHelperExtension.cs: 1402 - Fixing 130 +2025-06-30 17:39:56,066 INFO ExportHelperExtension.cs: 1402 - Fixing 85 +2025-06-30 17:39:56,568 INFO ExportHelperExtension.cs: 832 - R1: 0, 0 +2025-06-30 17:39:56,569 INFO ExportHelperExtension.cs: 841 - R2: 0, 0 +2025-06-30 17:39:56,569 INFO ExportHelperExtension.cs: 849 - L1: 0 +2025-06-30 17:39:56,569 INFO ExportHelperExtension.cs: 857 - L2: 0 +2025-06-30 17:39:56,570 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:39:56,570 INFO ExportHelperExtension.cs: 1352 - Unfixing component 140 +2025-06-30 17:39:56,570 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:56,570 INFO ExportHelperExtension.cs: 1352 - Unfixing component 130 +2025-06-30 17:39:56,570 INFO ExportHelperExtension.cs: 1352 - Unfixing component 85 +2025-06-30 17:39:57,104 WARN ExportHelperExtension.cs: 351 - Creating joint from parent leftFrountLeg2 to child leftFrountWheel failed +2025-06-30 17:39:57,189 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from װ.SLDASM +2025-06-30 17:39:57,189 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:39:57,190 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [CoordSys] in װ.SLDASM +2025-06-30 17:39:57,190 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:39:57,190 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:39:57,191 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:39:57,191 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:39:57,191 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:39:57,191 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-3 +2025-06-30 17:39:57,192 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:39:57,192 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-3 +2025-06-30 17:39:57,192 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-3 +2025-06-30 17:39:57,192 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:39:57,193 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-3 +2025-06-30 17:39:57,193 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-3 +2025-06-30 17:39:57,193 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:39:57,194 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-3 +2025-06-30 17:39:57,194 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-1 +2025-06-30 17:39:57,194 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:39:57,194 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-1 +2025-06-30 17:39:57,195 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-3 +2025-06-30 17:39:57,195 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:39:57,195 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-3 +2025-06-30 17:39:57,196 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 2-5 +2025-06-30 17:39:57,196 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:39:57,196 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 2-5 +2025-06-30 17:39:57,196 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С2-4 +2025-06-30 17:39:57,197 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:39:57,197 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С2-4 +2025-06-30 17:39:57,197 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from С1-4 +2025-06-30 17:39:57,197 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:39:57,198 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in С1-4 +2025-06-30 17:39:57,198 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 1-4 +2025-06-30 17:39:57,198 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:39:57,198 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 1-4 +2025-06-30 17:39:57,199 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 +2025-06-30 17:39:57,199 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:39:57,199 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 +2025-06-30 17:39:57,199 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ǰ-2 +2025-06-30 17:39:57,200 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:39:57,200 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ǰ-2 +2025-06-30 17:39:57,200 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 +2025-06-30 17:39:57,200 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:39:57,201 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 +2025-06-30 17:39:57,201 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from װ.SLDASM +2025-06-30 17:39:57,201 INFO ExportHelperExtension.cs: 1136 - Found 97 in װ.SLDASM +2025-06-30 17:39:57,202 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in װ.SLDASM +2025-06-30 17:39:57,202 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components +2025-06-30 17:39:57,202 INFO ExportHelperExtension.cs: 1160 - 13 components to check +2025-06-30 17:39:57,202 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:39:57,203 INFO ExportHelperExtension.cs: 1136 - Found 37 in -2 +2025-06-30 17:39:57,203 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:39:57,203 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-3 +2025-06-30 17:39:57,203 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-3 +2025-06-30 17:39:57,204 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-3 +2025-06-30 17:39:57,204 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-3 +2025-06-30 17:39:57,204 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-3 +2025-06-30 17:39:57,205 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-3 +2025-06-30 17:39:57,205 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-3 +2025-06-30 17:39:57,205 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-3 +2025-06-30 17:39:57,205 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-3 +2025-06-30 17:39:57,208 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-1 +2025-06-30 17:39:57,255 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-1 +2025-06-30 17:39:57,255 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-1 +2025-06-30 17:39:57,256 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-3 +2025-06-30 17:39:57,256 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-3 +2025-06-30 17:39:57,256 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-3 +2025-06-30 17:39:57,257 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 2-5 +2025-06-30 17:39:57,257 INFO ExportHelperExtension.cs: 1136 - Found 27 in 2-5 +2025-06-30 17:39:57,257 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 2-5 +2025-06-30 17:39:57,257 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С2-4 +2025-06-30 17:39:57,258 INFO ExportHelperExtension.cs: 1136 - Found 28 in С2-4 +2025-06-30 17:39:57,258 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С2-4 +2025-06-30 17:39:57,258 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from С1-4 +2025-06-30 17:39:57,259 INFO ExportHelperExtension.cs: 1136 - Found 31 in С1-4 +2025-06-30 17:39:57,259 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in С1-4 +2025-06-30 17:39:57,259 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 1-4 +2025-06-30 17:39:57,259 INFO ExportHelperExtension.cs: 1136 - Found 27 in 1-4 +2025-06-30 17:39:57,260 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 1-4 +2025-06-30 17:39:57,260 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 +2025-06-30 17:39:57,260 INFO ExportHelperExtension.cs: 1136 - Found 28 in -2 +2025-06-30 17:39:57,261 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 +2025-06-30 17:39:57,261 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ǰ-2 +2025-06-30 17:39:57,261 INFO ExportHelperExtension.cs: 1136 - Found 28 in ǰ-2 +2025-06-30 17:39:57,261 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ǰ-2 +2025-06-30 17:39:57,262 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 +2025-06-30 17:39:57,262 INFO ExportHelperExtension.cs: 1136 - Found 28 in -1 +2025-06-30 17:39:57,262 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 +2025-06-30 17:39:57,309 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message +2025-06-30 17:40:02,069 INFO AssemblyExportForm.cs: 253 - Completing URDF export +2025-06-30 17:40:02,070 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found +nametruebase_linkxyztrue0.4048941258416246-0.07417100006635545-0.25rpytrue000originfalsefalsevaluetrue36.238217315510852massfalseixxtrue0.711497711143894ixytrue-0.0013550472051328216ixztrue6.6231681645793542E-17iyytrue1.4652890963294924iyztrue8.3976025435473923E-17izztrue0.89078375214778915inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseOrigin_globallinktruenametruerightBackLeg1xyztrue0.159521553180004580.11419261166574446-0.0058382903590073615rpytrue000originfalsefalsevaluetrue37.750146705827078massfalseixxtrue0.73443178974580758ixytrue-8.5471449851092122E-17ixztrue-0.017248838214919144iyytrue0.92691679191609744iyztrue-2.1514268447883184E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackHiptypetruefixedxyztrue0.233470.13-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackHiplinktruenametruerightBackLeg2xyztrue-1.3877787807814457E-17-1.1102230246251565E-16-0.09809553293534734rpytrue000originfalsefalsevaluetrue2.9191351407279589massfalseixxtrue0.077483115922509033ixytrue7.9351860147188686E-19ixztrue2.7726436346497253E-19iyytrue0.075707583124541719iyztrue2.0708261494473135E-17izztrue0.0028668101441875313inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackKneetypetruefixedxyztrue-0.17648-0.025-0.23237rpytrue0.6495601.5708originfalsefalselinktruerightBackLeg1parenttruelinktruerightBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackKneelinktruenametruerightBackWheelxyztrue0.0906437491267199640.119345179053195750.0095752430168192931rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.029015950238372373ixytrue-0.019190768056975942ixztrue-2.574253223478276E-18iyytrue0.01832418173296196iyztrue-3.7421378222781478E-18izztrue0.04669244794473458inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightBackAnkletypetruecontinuousxyztrue-0.0150-0.57rpytrue1.5708-0.64956-1.5708originfalsefalselinktruerightBackLeg2parenttruelinktruerightBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=aEIAAAUAAAD//v8LDlRujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADpAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=aEIAAAUAAAD//v8MD1x/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAHgAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGgAAAA=falsefalsenametrueleftBackLeg1xyztrue0.15952155318000449-0.11419261166574451-0.0058382903590074309rpytrue000originfalsefalsevaluetrue37.750146705827085massfalseixxtrue0.73443178974580758ixytrue-7.6545574943502289E-17ixztrue-0.017248838214919147iyytrue0.92691679191609744iyztrue-2.1268324565786637E-17izztrue1.4793682539795456inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackHiptypetruefixedxyztrue0.233470.37-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftBackLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackHiplinktruenametrueleftBackLeg2xyztrue-1.3877787807814457E-161.1102230246251565E-16-0.098095532935347146rpytrue000originfalsefalsevaluetrue2.9191351407279584massfalseixxtrue0.075707583124541677ixytrue-3.8877986498560283E-19ixztrue3.0357660829594109E-18iyytrue0.077483115922508977iyztrue-3.422180486960788E-18izztrue0.0028668101441875387inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackKneetypetruefixedxyztrue-0.176480.025-0.23237rpytrue00.649560originfalsefalselinktrueleftBackLeg1parenttruelinktrueleftBackLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackKneelinktruenametrueleftBackWheelxyztrue-0.0906437491267199080.119345179053195750.0095752430168193348rpytrue000originfalsefalsevaluetrue2.5961340495567544massfalseixxtrue0.02901595023837231ixytrue0.019190768056975914ixztrue-9.954601325645941E-19iyytrue0.018324181732961946iyztrue1.85841836801446E-18izztrue0.046692447944734504inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftBackAnkletypetruefixedxyztrue00.015-0.57rpytrue1.57080.649563.1416originfalsefalselinktrueleftBackLeg2parenttruelinktrueleftBackWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseleftBackAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=aEIAAAUAAAD//v8LDlRujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADoAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=aEIAAAUAAAD//v8MD1x/gTIALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKcAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTIALQA1AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAKYAAAA=falsefalsenametruerightFrountLeg1xyztrue-0.118941133817545840.23627364448442775-0.00580806156002367rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095687ixytrue-8.0106543261857891E-17ixztrue0.014377444559300619iyytrue0.92519426863526311iyztrue-2.2168033915144858E-17izztrue1.4852068458017578inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountHiptypetruefixedxyztrue0.538110-0.075rpytrue000originfalsefalselinktruebase_linkparenttruelinktruerightFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalserightFrountHiplinktruenametruerightFrountLeg2xyztrue-0.15013435250404195-0.084293727415587716-0.010000000000002063rpytrue000originfalsefalsevaluetrue2.4985935061359097massfalseixxtrue0.026533388814768594ixytrue-0.013712046094442831ixztrue-2.7972106599326071E-18iyytrue0.020494911676155358iyztrue-1.7318638437110483E-18izztrue0.046144108792916388inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountKneetypetruefixedxyztrue0.34043711489326334-0.014999999999998086-0.29428314733123562rpytrue-1.570796326794896600originfalsefalselinktruerightFrountLeg1parenttruelinktruerightFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountKneerightFrountKneelinktruenametruerightFrountWheelxyztrue0.0124502311028006350.0678549846910667660.020140014897849834rpytrue000originfalsefalsevaluetrue2.4342788882759447massfalseixxtrue0.018177567097784272ixytrue-0.0020204456699906047ixztrue4.3819014274299773E-18iyytrue0.0075366566539683683iyztrue-5.3953207991625215E-18izztrue0.025179229208706792inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruerightFrountAnkletypetruefixedxyztrue-0.0812115982488985640.44261120219653216-0.020000000000000025rpytrue3.141592653589793100originfalsefalselinktruerightFrountLeg2parenttruelinktruerightFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_rightFrountAnklerightFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=aEIAAAUAAAD//v8LTVJujy0AMQBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADvAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=aEIAAAUAAAD//v8MD1x/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAGMAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQAzAEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAFcAAAA=falsefalsenametrueleftFrountLeg1xyztrue-0.118941133817548-0.23627364448442784-0.0058080615600213659rpytrue000originfalsefalsevaluetrue38.142039857982851massfalseixxtrue0.72681302731095709ixytrue-7.0695850236199268E-17ixztrue0.01437744455930063iyytrue0.92519426863526311iyztrue-3.3879553223792215E-17izztrue1.4852068458017582inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountHiptypetruefixedxyztrue0.53811424332223090.50000000000000011-0.074999999999958045rpytrue000originfalsefalselinktruebase_linkparenttruelinktrueleftFrountLeg1childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountHipleftFrountHiplinktruenametrueleftFrountLeg2xyztrue-0.15013435250404261-0.0842937274155939890.010000000000003451rpytrue000originfalsefalsevaluetrue2.4985935061359119massfalseixxtrue0.026533388814768605ixytrue-0.013712046094442796ixztrue-6.4111159988788295E-19iyytrue0.02049491167615539iyztrue-3.8649861932360607E-18izztrue0.04614410879291643inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountKneetypetruefixedxyztrue0.340437114893262890.014999999999995572-0.29428314733123639rpytrue-1.57079632679489700originfalsefalselinktrueleftFrountLeg1parenttruelinktrueleftFrountLeg2childtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountKneeleftFrountKneelinktruenametrueleftFrountWheelxyztrue-0.0124502311028042990.0678549846910666550.020140014897851333rpytrue000originfalsefalsevaluetrue2.4342788882759439massfalseixxtrue0.018177567097784272ixytrue0.0020204456699906542ixztrue3.2484994461059574E-19iyytrue0.00753665665396838iyztrue-9.11376586957131E-19izztrue0.0251792292087068inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue0.7921568627450980.819607843137254880.933333333333333351colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleftFrountAnkletypetruefixedxyztrue-0.08121159824890190.442611202196531490.020000000000000129rpytrue003.1415926535897931originfalsefalselinktrueleftFrountLeg2parenttruelinktrueleftFrountWheelchildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upper_limitfalsesoft_lower_limitfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseAxis_leftFrountAnkleleftFrountAnklelinktruefalseaEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=aEIAAAUAAAD//v8LTVJujy0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAADzAAAAfalsefalsefalseaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=aEIAAAUAAAD//v8MD1x/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIwAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAaEIAAAUAAAD//v8MJ1l/gTEALQA0AEAA5V0LejdoOmfFiE2RBAAAABAAAAABAAAAAQAAAIIAAAA=falsefalsefalseaEIAAAUAAAD//v8L+lenXi0AMgBAAOVdC3o3aDpnxYhNkQQAAAAQAAAAAQAAAAEAAABVAAAAfalsefalse +2025-06-30 17:40:18,933 INFO AssemblyExportForm.cs: 309 - Saving URDF package to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2 +2025-06-30 17:40:18,934 INFO ExportHelper.cs: 147 - Beginning the export process +2025-06-30 17:40:18,935 INFO ExportHelper.cs: 153 - Creating package directories with name HiveCoreR2 and save path D:\7_HiveCore\1_RD\1_˫Ŀ\\V2 +2025-06-30 17:40:21,822 INFO ExportHelper.cs: 162 - Creating CMakeLists.txt at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\CMakeLists.txt +2025-06-30 17:40:21,822 INFO ExportHelper.cs: 166 - Creating joint names config at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\config\joint_names_HiveCoreR2.yaml +2025-06-30 17:40:21,823 INFO ExportHelper.cs: 170 - Creating package.xml at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\package.xml +2025-06-30 17:40:21,823 INFO PackageXMLWriter.cs: 21 - Creating package.xml at D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\package.xml +2025-06-30 17:40:21,824 INFO ExportHelper.cs: 177 - Creating RVIZ launch file in D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\launch\ +2025-06-30 17:40:21,824 INFO ExportHelper.cs: 182 - Creating Gazebo launch file in D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\launch\ +2025-06-30 17:40:21,824 INFO ExportHelper.cs: 187 - Saving existing STL preferences +2025-06-30 17:40:21,824 INFO ExportHelper.cs: 450 - Saving users preferences +2025-06-30 17:40:21,825 INFO ExportHelper.cs: 190 - Modifying STL preferences +2025-06-30 17:40:21,825 INFO ExportHelper.cs: 464 - Setting STL preferences +2025-06-30 17:40:21,825 INFO ExportHelper.cs: 196 - Found 0 hidden components +2025-06-30 17:40:21,825 INFO ExportHelper.cs: 197 - Hiding all components +2025-06-30 17:40:21,939 INFO ExportHelper.cs: 204 - Beginning individual files export +2025-06-30 17:40:21,970 INFO ExportHelper.cs: 270 - Exporting link: base_link +2025-06-30 17:40:21,971 INFO ExportHelper.cs: 272 - Link base_link has 4 children +2025-06-30 17:40:21,972 INFO ExportHelper.cs: 270 - Exporting link: rightBackLeg1 +2025-06-30 17:40:21,972 INFO ExportHelper.cs: 272 - Link rightBackLeg1 has 1 children +2025-06-30 17:40:21,973 INFO ExportHelper.cs: 270 - Exporting link: rightBackLeg2 +2025-06-30 17:40:21,974 INFO ExportHelper.cs: 272 - Link rightBackLeg2 has 1 children +2025-06-30 17:40:21,974 INFO ExportHelper.cs: 270 - Exporting link: rightBackWheel +2025-06-30 17:40:21,974 INFO ExportHelper.cs: 272 - Link rightBackWheel has 0 children +2025-06-30 17:40:21,975 INFO ExportHelper.cs: 317 - rightBackWheel: Exporting STL with coordinate frame rightBackAnkle +2025-06-30 17:40:21,975 INFO ExportHelper.cs: 322 - rightBackWheel: Reference geometry name +2025-06-30 17:40:21,996 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightBackWheel.STL +2025-06-30 17:40:22,076 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,077 INFO ExportHelper.cs: 317 - rightBackLeg2: Exporting STL with coordinate frame rightBackKnee +2025-06-30 17:40:22,077 INFO ExportHelper.cs: 322 - rightBackLeg2: Reference geometry name +2025-06-30 17:40:22,093 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightBackLeg2.STL +2025-06-30 17:40:22,183 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,184 INFO ExportHelper.cs: 317 - rightBackLeg1: Exporting STL with coordinate frame rightBackHip +2025-06-30 17:40:22,184 INFO ExportHelper.cs: 322 - rightBackLeg1: Reference geometry name +2025-06-30 17:40:22,255 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightBackLeg1.STL +2025-06-30 17:40:22,376 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,378 INFO ExportHelper.cs: 270 - Exporting link: leftBackLeg1 +2025-06-30 17:40:22,378 INFO ExportHelper.cs: 272 - Link leftBackLeg1 has 1 children +2025-06-30 17:40:22,381 INFO ExportHelper.cs: 270 - Exporting link: leftBackLeg2 +2025-06-30 17:40:22,381 INFO ExportHelper.cs: 272 - Link leftBackLeg2 has 1 children +2025-06-30 17:40:22,382 INFO ExportHelper.cs: 270 - Exporting link: leftBackWheel +2025-06-30 17:40:22,382 INFO ExportHelper.cs: 272 - Link leftBackWheel has 0 children +2025-06-30 17:40:22,382 INFO ExportHelper.cs: 317 - leftBackWheel: Exporting STL with coordinate frame leftBackAnkle +2025-06-30 17:40:22,383 INFO ExportHelper.cs: 322 - leftBackWheel: Reference geometry name +2025-06-30 17:40:22,418 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftBackWheel.STL +2025-06-30 17:40:22,509 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,510 INFO ExportHelper.cs: 317 - leftBackLeg2: Exporting STL with coordinate frame leftBackKnee +2025-06-30 17:40:22,510 INFO ExportHelper.cs: 322 - leftBackLeg2: Reference geometry name +2025-06-30 17:40:22,527 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftBackLeg2.STL +2025-06-30 17:40:22,616 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,617 INFO ExportHelper.cs: 317 - leftBackLeg1: Exporting STL with coordinate frame leftBackHip +2025-06-30 17:40:22,617 INFO ExportHelper.cs: 322 - leftBackLeg1: Reference geometry name +2025-06-30 17:40:22,693 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftBackLeg1.STL +2025-06-30 17:40:22,810 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,811 INFO ExportHelper.cs: 270 - Exporting link: rightFrountLeg1 +2025-06-30 17:40:22,811 INFO ExportHelper.cs: 272 - Link rightFrountLeg1 has 1 children +2025-06-30 17:40:22,812 INFO ExportHelper.cs: 270 - Exporting link: rightFrountLeg2 +2025-06-30 17:40:22,813 INFO ExportHelper.cs: 272 - Link rightFrountLeg2 has 1 children +2025-06-30 17:40:22,813 INFO ExportHelper.cs: 270 - Exporting link: rightFrountWheel +2025-06-30 17:40:22,814 INFO ExportHelper.cs: 272 - Link rightFrountWheel has 0 children +2025-06-30 17:40:22,814 INFO ExportHelper.cs: 317 - rightFrountWheel: Exporting STL with coordinate frame rightFrountAnkle +2025-06-30 17:40:22,814 INFO ExportHelper.cs: 322 - rightFrountWheel: Reference geometry name +2025-06-30 17:40:22,846 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightFrountWheel.STL +2025-06-30 17:40:22,962 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:22,963 INFO ExportHelper.cs: 317 - rightFrountLeg2: Exporting STL with coordinate frame rightFrountKnee +2025-06-30 17:40:22,963 INFO ExportHelper.cs: 322 - rightFrountLeg2: Reference geometry name +2025-06-30 17:40:22,986 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightFrountLeg2.STL +2025-06-30 17:40:23,070 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:23,070 INFO ExportHelper.cs: 317 - rightFrountLeg1: Exporting STL with coordinate frame rightFrountHip +2025-06-30 17:40:23,071 INFO ExportHelper.cs: 322 - rightFrountLeg1: Reference geometry name +2025-06-30 17:40:23,196 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\rightFrountLeg1.STL +2025-06-30 17:40:23,351 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:23,352 INFO ExportHelper.cs: 270 - Exporting link: leftFrountLeg1 +2025-06-30 17:40:23,352 INFO ExportHelper.cs: 272 - Link leftFrountLeg1 has 1 children +2025-06-30 17:40:23,353 INFO ExportHelper.cs: 270 - Exporting link: leftFrountLeg2 +2025-06-30 17:40:23,353 INFO ExportHelper.cs: 272 - Link leftFrountLeg2 has 1 children +2025-06-30 17:40:23,353 INFO ExportHelper.cs: 270 - Exporting link: leftFrountWheel +2025-06-30 17:40:23,353 INFO ExportHelper.cs: 272 - Link leftFrountWheel has 0 children +2025-06-30 17:40:23,353 INFO ExportHelper.cs: 317 - leftFrountWheel: Exporting STL with coordinate frame leftFrountAnkle +2025-06-30 17:40:23,354 INFO ExportHelper.cs: 322 - leftFrountWheel: Reference geometry name +2025-06-30 17:40:23,378 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftFrountWheel.STL +2025-06-30 17:40:23,470 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:23,471 INFO ExportHelper.cs: 317 - leftFrountLeg2: Exporting STL with coordinate frame leftFrountKnee +2025-06-30 17:40:23,471 INFO ExportHelper.cs: 322 - leftFrountLeg2: Reference geometry name +2025-06-30 17:40:23,513 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftFrountLeg2.STL +2025-06-30 17:40:23,604 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:23,604 INFO ExportHelper.cs: 317 - leftFrountLeg1: Exporting STL with coordinate frame leftFrountHip +2025-06-30 17:40:23,605 INFO ExportHelper.cs: 322 - leftFrountLeg1: Reference geometry name +2025-06-30 17:40:23,694 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\leftFrountLeg1.STL +2025-06-30 17:40:23,843 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:23,844 INFO ExportHelper.cs: 317 - base_link: Exporting STL with coordinate frame Origin_global +2025-06-30 17:40:23,844 INFO ExportHelper.cs: 322 - base_link: Reference geometry name +2025-06-30 17:40:23,932 INFO ExportHelper.cs: 330 - Saving STL to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\meshes\base_link.STL +2025-06-30 17:40:24,062 INFO ExportHelper.cs: 405 - Removing SW header in STL file +2025-06-30 17:40:24,064 INFO ExportHelper.cs: 145 - Showing all components except previously hidden components +2025-06-30 17:40:24,217 INFO ExportHelper.cs: 145 - Resetting STL preferences +2025-06-30 17:40:24,217 INFO ExportHelper.cs: 478 - Returning STL preferences to user preferences +2025-06-30 17:40:24,218 INFO ExportHelper.cs: 228 - Writing URDF file to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\urdf\HiveCoreR2.urdf +2025-06-30 17:40:24,220 INFO CSVImportExport.cs: 32 - Writing CSV file D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\urdf\HiveCoreR2.csv +2025-06-30 17:40:24,220 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,221 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,221 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,221 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,222 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,222 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,222 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,223 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,223 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,223 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,223 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,224 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,224 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, +2025-06-30 17:40:24,224 INFO ExportHelper.cs: 234 - Copying log file +2025-06-30 17:40:24,225 INFO ExportHelper.cs: 439 - Copying C:\Users\Ray\sw2urdf_logs\sw2urdf.log to D:\7_HiveCore\1_RD\1_˫Ŀ\\V2\HiveCoreR2\export.log diff --git a/HiveCoreR2/src/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc b/HiveCoreR2/src/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc new file mode 100644 index 0000000..a3fa87b Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/launch/__pycache__/display_launch.cpython-310.pyc differ diff --git a/HiveCoreR2/src/hive_core_r2/launch/display_launch.py b/HiveCoreR2/src/hive_core_r2/launch/display_launch.py new file mode 100644 index 0000000..2561025 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/launch/display_launch.py @@ -0,0 +1,42 @@ +import launch +import launch_ros +from ament_index_python.packages import get_package_share_directory + + +def generate_launch_description(): + # 获取默认路径 + urdf_tutorial_path = get_package_share_directory('hive_core_r2') + default_model_path = urdf_tutorial_path + '/urdf/HiveCoreR2.urdf.xacro' + default_rviz_config_path = urdf_tutorial_path + '/config/rviz/display_model.rviz' + # 为 Launch 声明参数 + action_declare_arg_mode_path = launch.actions.DeclareLaunchArgument( + name='model', default_value=str(default_model_path), + description='URDF 的绝对路径') + # 获取文件内容生成新的参数 + robot_description = launch_ros.parameter_descriptions.ParameterValue( + launch.substitutions.Command( + ['xacro ', launch.substitutions.LaunchConfiguration('model')]), + value_type=str) + # 状态发布节点 + robot_state_publisher_node = launch_ros.actions.Node( + package='robot_state_publisher', + executable='robot_state_publisher', + parameters=[{'robot_description': robot_description}] + ) + # 关节状态发布节点 + joint_state_publisher_node = launch_ros.actions.Node( + package='joint_state_publisher', + executable='joint_state_publisher', + ) + # RViz 节点 + rviz_node = launch_ros.actions.Node( + package='rviz2', + executable='rviz2', + arguments=['-d', default_rviz_config_path] + ) + return launch.LaunchDescription([ + action_declare_arg_mode_path, + joint_state_publisher_node, + robot_state_publisher_node, + rviz_node + ]) diff --git a/HiveCoreR2/src/hive_core_r2/package.xml b/HiveCoreR2/src/hive_core_r2/package.xml new file mode 100644 index 0000000..de099f8 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/package.xml @@ -0,0 +1,18 @@ + + + + hive_core_r2 + 0.0.0 + TODO: Package description + hivecore + Apache-2.0 + + ament_cmake + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf b/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf new file mode 100644 index 0000000..b3c5f06 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf @@ -0,0 +1,683 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf.xacro b/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf.xacro new file mode 100644 index 0000000..a5de029 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/urdf/HiveCoreR2.urdf.xacro @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR2/src/hive_core_r2/urdf/actuator/wheel.urdf.xacro b/HiveCoreR2/src/hive_core_r2/urdf/actuator/wheel.urdf.xacro new file mode 100644 index 0000000..31624d8 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/urdf/actuator/wheel.urdf.xacro @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR2/src/hive_core_r2/urdf/base.urdf.xacro b/HiveCoreR2/src/hive_core_r2/urdf/base.urdf.xacro new file mode 100644 index 0000000..f6dab14 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/urdf/base.urdf.xacro @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR2/src/hive_core_r2/urdf/common_inertia.xacro b/HiveCoreR2/src/hive_core_r2/urdf/common_inertia.xacro new file mode 100644 index 0000000..8486102 --- /dev/null +++ b/HiveCoreR2/src/hive_core_r2/urdf/common_inertia.xacro @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/base_link.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/base_link.STL new file mode 100644 index 0000000..de18524 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/base_link.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg1.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg1.STL new file mode 100644 index 0000000..fcf6527 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg1.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg2.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg2.STL new file mode 100644 index 0000000..3cd4284 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackLeg2.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackWheel.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackWheel.STL new file mode 100644 index 0000000..b384b50 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftBackWheel.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg1.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg1.STL new file mode 100644 index 0000000..74fdaf7 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg1.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg2.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg2.STL new file mode 100644 index 0000000..b94d7da Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountLeg2.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountWheel.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountWheel.STL new file mode 100644 index 0000000..9f44f6b Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/leftFrountWheel.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg1.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg1.STL new file mode 100644 index 0000000..9f54bfb Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg1.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg2.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg2.STL new file mode 100644 index 0000000..8ff1a9a Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackLeg2.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackWheel.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackWheel.STL new file mode 100644 index 0000000..1da1c86 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightBackWheel.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg1.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg1.STL new file mode 100644 index 0000000..669941f Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg1.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg2.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg2.STL new file mode 100644 index 0000000..bc695b2 Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountLeg2.STL differ diff --git a/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountWheel.STL b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountWheel.STL new file mode 100644 index 0000000..117c24a Binary files /dev/null and b/HiveCoreR2/src/hive_core_r2/urdf/meshes/rightFrountWheel.STL differ diff --git a/RobotOS1/CMakeLists.txt b/RobotOS1/CMakeLists.txt deleted file mode 100755 index f0ac5eb..0000000 --- a/RobotOS1/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) - -project(robot3) - -find_package(catkin REQUIRED) - -catkin_package() - -find_package(roslaunch) - -foreach(dir config launch meshes urdf) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) diff --git a/RobotOS1/config/joint_names_robot3.yaml b/RobotOS1/config/joint_names_robot3.yaml deleted file mode 100755 index 427b0c3..0000000 --- a/RobotOS1/config/joint_names_robot3.yaml +++ /dev/null @@ -1 +0,0 @@ -controller_joint_names: ['', 'left_hip_pitch_joint', 'left_leg_pitch_joint', 'left_wheel2_joint', 'left_wheel1_joint', 'right_hip_pitch_joint', 'right_leg_pitch_joint', 'right_wheel2_joint', 'right_wheel1_joint', 'left_shoulder_joint', 'left_arm1_joint', 'left_arm2_joint', 'right_shoulder_joint', 'right_arm1_joint', 'right_arm2_joint', ] diff --git a/RobotOS1/export.log b/RobotOS1/export.log deleted file mode 100755 index 929b1af..0000000 --- a/RobotOS1/export.log +++ /dev/null @@ -1,1147 +0,0 @@ -2025-05-27 08:23:17,632 INFO Logger.cs: 70 - --------------------------------------------------------------------------------- -2025-05-27 08:23:17,663 INFO Logger.cs: 71 - Logging commencing for SW2URDF exporter -2025-05-27 08:23:17,665 INFO Logger.cs: 73 - Commit version 1.6.0-1-g15f4949 -2025-05-27 08:23:17,665 INFO Logger.cs: 74 - Build version 1.6.7594.29634 -2025-05-27 08:23:17,667 INFO SwAddin.cs: 192 - Attempting to connect to SW -2025-05-27 08:23:17,667 INFO SwAddin.cs: 197 - Setting up callbacks -2025-05-27 08:23:17,668 INFO SwAddin.cs: 201 - Setting up command manager -2025-05-27 08:23:17,668 INFO SwAddin.cs: 204 - Adding command manager -2025-05-27 08:23:17,671 INFO SwAddin.cs: 263 - Adding Assembly export to file menu -2025-05-27 08:23:17,672 INFO SwAddin.cs: 272 - Adding Part export to file menu -2025-05-27 08:23:17,672 INFO SwAddin.cs: 210 - Adding event handlers -2025-05-27 08:23:17,674 INFO SwAddin.cs: 217 - Connecting plugin to SolidWorks -2025-05-27 08:26:12,314 INFO SwAddin.cs: 294 - Assembly export called for file AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,315 INFO SwAddin.cs: 299 - Save is required -2025-05-27 08:26:12,315 INFO SwAddin.cs: 313 - Saving assembly -2025-05-27 08:26:12,684 INFO SwAddin.cs: 316 - Opening property manager -2025-05-27 08:26:12,697 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,702 INFO ExportHelperExtension.cs: 1136 - Found 259 in AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,704 INFO ExportHelperExtension.cs: 1145 - Found 15 features of type [CoordSys] in AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,704 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:26:12,705 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:26:12,706 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:26:12,707 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:26:12,707 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:26:12,708 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:26:12,708 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:26:12,708 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:26:12,708 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ-1 -2025-05-27 08:26:12,709 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:26:12,709 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ-1 -2025-05-27 08:26:12,709 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Dz-3 -2025-05-27 08:26:12,710 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:26:12,710 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Dz-3 -2025-05-27 08:26:12,710 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-2 -2025-05-27 08:26:12,711 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:26:12,711 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-2 -2025-05-27 08:26:12,711 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-1 -2025-05-27 08:26:12,712 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:26:12,712 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-1 -2025-05-27 08:26:12,712 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:26:12,712 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:26:12,713 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:26:12,713 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ2-2 -2025-05-27 08:26:12,713 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:26:12,714 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ2-2 -2025-05-27 08:26:12,714 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ƹ-2 -2025-05-27 08:26:12,714 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:26:12,715 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ƹ-2 -2025-05-27 08:26:12,715 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:26:12,715 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:26:12,716 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:26:12,716 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,716 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,717 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,717 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-2 -2025-05-27 08:26:12,717 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:26:12,718 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-2 -2025-05-27 08:26:12,718 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-1 -2025-05-27 08:26:12,718 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:26:12,719 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-1 -2025-05-27 08:26:12,719 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:26:12,719 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:26:12,720 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:26:12,720 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,721 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,721 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,722 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:26:12,722 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:26:12,722 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:26:12,723 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AAϰ-1 -2025-05-27 08:26:12,723 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:26:12,724 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in AAϰ-1 -2025-05-27 08:26:12,724 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-2 -2025-05-27 08:26:12,724 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:26:12,725 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-2 -2025-05-27 08:26:12,725 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:26:12,725 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:26:12,726 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:26:12,726 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -4 -2025-05-27 08:26:12,726 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:26:12,726 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -4 -2025-05-27 08:26:12,728 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-1 -2025-05-27 08:26:12,728 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:26:12,729 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-1 -2025-05-27 08:26:12,729 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,729 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,730 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,730 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-1 -2025-05-27 08:26:12,731 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:26:12,731 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-1 -2025-05-27 08:26:12,731 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,732 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,732 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,733 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-2 -2025-05-27 08:26:12,733 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:26:12,733 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-2 -2025-05-27 08:26:12,734 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:26:12,734 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:26:12,734 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:26:12,735 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-1 -2025-05-27 08:26:12,735 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:26:12,736 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-1 -2025-05-27 08:26:12,736 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:26:12,736 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:26:12,740 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:26:12,740 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-2 -2025-05-27 08:26:12,750 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:26:12,751 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-2 -2025-05-27 08:26:12,751 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,752 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,752 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,752 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-2 -2025-05-27 08:26:12,753 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:26:12,753 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-2 -2025-05-27 08:26:12,753 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,754 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,754 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,754 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-1 -2025-05-27 08:26:12,755 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:26:12,755 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-1 -2025-05-27 08:26:12,755 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-1 -2025-05-27 08:26:12,756 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:26:12,756 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-1 -2025-05-27 08:26:12,756 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-7 -2025-05-27 08:26:12,757 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:26:12,757 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-7 -2025-05-27 08:26:12,757 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-10 -2025-05-27 08:26:12,758 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:26:12,758 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-10 -2025-05-27 08:26:12,758 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-2 -2025-05-27 08:26:12,758 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:26:12,759 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-2 -2025-05-27 08:26:12,759 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-4 -2025-05-27 08:26:12,759 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:26:12,760 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-4 -2025-05-27 08:26:12,760 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-9 -2025-05-27 08:26:12,760 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:26:12,760 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-9 -2025-05-27 08:26:12,761 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-1 -2025-05-27 08:26:12,761 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:26:12,761 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-1 -2025-05-27 08:26:12,762 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-8 -2025-05-27 08:26:12,762 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:26:12,762 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-8 -2025-05-27 08:26:12,762 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-7 -2025-05-27 08:26:12,763 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:26:12,763 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-7 -2025-05-27 08:26:12,763 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-2 -2025-05-27 08:26:12,763 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:26:12,764 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-2 -2025-05-27 08:26:12,764 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-2 -2025-05-27 08:26:12,764 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:26:12,765 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-2 -2025-05-27 08:26:12,765 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-1 -2025-05-27 08:26:12,765 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:26:12,766 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-1 -2025-05-27 08:26:12,766 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-1 -2025-05-27 08:26:12,766 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:26:12,767 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-1 -2025-05-27 08:26:12,767 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-3 -2025-05-27 08:26:12,767 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:26:12,767 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-3 -2025-05-27 08:26:12,768 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-8 -2025-05-27 08:26:12,768 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:26:12,768 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-8 -2025-05-27 08:26:12,769 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-3 -2025-05-27 08:26:12,769 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:26:12,769 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-3 -2025-05-27 08:26:12,770 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,770 INFO ExportHelperExtension.cs: 1136 - Found 259 in AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,771 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [RefAxis] in AA򻯳Ʒ .SLDASM -2025-05-27 08:26:12,771 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:26:12,772 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:26:12,772 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:26:12,772 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:26:12,773 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:26:12,773 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:26:12,774 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:26:12,774 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:26:12,774 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ-1 -2025-05-27 08:26:12,775 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:26:12,775 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ-1 -2025-05-27 08:26:12,775 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Dz-3 -2025-05-27 08:26:12,776 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:26:12,776 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Dz-3 -2025-05-27 08:26:12,776 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-2 -2025-05-27 08:26:12,777 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:26:12,777 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-2 -2025-05-27 08:26:12,777 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-1 -2025-05-27 08:26:12,778 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:26:12,778 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-1 -2025-05-27 08:26:12,778 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:26:12,779 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:26:12,779 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:26:12,779 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ2-2 -2025-05-27 08:26:12,780 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:26:12,780 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ2-2 -2025-05-27 08:26:12,780 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ƹ-2 -2025-05-27 08:26:12,780 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:26:12,781 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ƹ-2 -2025-05-27 08:26:12,781 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:26:12,781 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:26:12,782 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:26:12,782 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,782 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,783 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:26:12,783 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-2 -2025-05-27 08:26:12,784 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:26:12,784 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-2 -2025-05-27 08:26:12,784 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-1 -2025-05-27 08:26:12,784 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:26:12,785 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-1 -2025-05-27 08:26:12,785 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:26:12,785 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:26:12,786 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:26:12,786 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,786 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,787 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:26:12,787 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:26:12,787 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:26:12,787 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:26:12,788 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AAϰ-1 -2025-05-27 08:26:12,788 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:26:12,788 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in AAϰ-1 -2025-05-27 08:26:12,789 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-2 -2025-05-27 08:26:12,789 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:26:12,789 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-2 -2025-05-27 08:26:12,789 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:26:12,790 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:26:12,790 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:26:12,790 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -4 -2025-05-27 08:26:12,791 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:26:12,791 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -4 -2025-05-27 08:26:12,791 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-1 -2025-05-27 08:26:12,792 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:26:12,792 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-1 -2025-05-27 08:26:12,792 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,793 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,793 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:26:12,793 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-1 -2025-05-27 08:26:12,794 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:26:12,794 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-1 -2025-05-27 08:26:12,794 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,794 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,795 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:26:12,795 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-2 -2025-05-27 08:26:12,795 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:26:12,796 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-2 -2025-05-27 08:26:12,796 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:26:12,796 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:26:12,797 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:26:12,797 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-1 -2025-05-27 08:26:12,797 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:26:12,798 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-1 -2025-05-27 08:26:12,798 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:26:12,798 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:26:12,798 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:26:12,799 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-2 -2025-05-27 08:26:12,799 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:26:12,799 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-2 -2025-05-27 08:26:12,800 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,800 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,800 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:26:12,807 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-2 -2025-05-27 08:26:12,829 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:26:12,830 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-2 -2025-05-27 08:26:12,830 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,831 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,831 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:26:12,832 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-1 -2025-05-27 08:26:12,832 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:26:12,833 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-1 -2025-05-27 08:26:12,833 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-1 -2025-05-27 08:26:12,834 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:26:12,834 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-1 -2025-05-27 08:26:12,834 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-7 -2025-05-27 08:26:12,835 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:26:12,836 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-7 -2025-05-27 08:26:12,836 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-10 -2025-05-27 08:26:12,836 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:26:12,837 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-10 -2025-05-27 08:26:12,837 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-2 -2025-05-27 08:26:12,838 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:26:12,838 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-2 -2025-05-27 08:26:12,838 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-4 -2025-05-27 08:26:12,838 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:26:12,839 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-4 -2025-05-27 08:26:12,839 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-9 -2025-05-27 08:26:12,839 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:26:12,840 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-9 -2025-05-27 08:26:12,840 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-1 -2025-05-27 08:26:12,840 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:26:12,841 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-1 -2025-05-27 08:26:12,841 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-8 -2025-05-27 08:26:12,841 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:26:12,841 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-8 -2025-05-27 08:26:12,842 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-7 -2025-05-27 08:26:12,842 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:26:12,842 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-7 -2025-05-27 08:26:12,843 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-2 -2025-05-27 08:26:12,843 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:26:12,843 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-2 -2025-05-27 08:26:12,843 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-2 -2025-05-27 08:26:12,844 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:26:12,844 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-2 -2025-05-27 08:26:12,844 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-1 -2025-05-27 08:26:12,845 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:26:12,845 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-1 -2025-05-27 08:26:12,846 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-1 -2025-05-27 08:26:12,846 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:26:12,847 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-1 -2025-05-27 08:26:12,847 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-3 -2025-05-27 08:26:12,847 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:26:12,848 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-3 -2025-05-27 08:26:12,848 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-8 -2025-05-27 08:26:12,849 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:26:12,849 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-8 -2025-05-27 08:26:12,850 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-3 -2025-05-27 08:26:12,850 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:26:12,851 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-3 -2025-05-27 08:26:13,003 INFO SwAddin.cs: 339 - Loading config tree -2025-05-27 08:26:13,008 INFO ExportPropertyManagerExtension.cs: 520 - Starting new configuration -2025-05-27 08:26:13,011 INFO SwAddin.cs: 344 - Showing property manager -2025-05-27 08:28:36,467 INFO ExportPropertyManager.cs: 422 - Configuration saved -2025-05-27 08:28:36,626 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:29:05,336 INFO SwAddin.cs: 294 - Assembly export called for file AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,337 INFO SwAddin.cs: 299 - Save is required -2025-05-27 08:29:05,337 INFO SwAddin.cs: 313 - Saving assembly -2025-05-27 08:29:05,709 INFO SwAddin.cs: 316 - Opening property manager -2025-05-27 08:29:05,709 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,710 INFO ExportHelperExtension.cs: 1136 - Found 259 in AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,711 INFO ExportHelperExtension.cs: 1145 - Found 15 features of type [CoordSys] in AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,711 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:29:05,711 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:29:05,712 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:29:05,712 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:29:05,712 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:29:05,713 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:29:05,713 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:29:05,713 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:29:05,714 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ-1 -2025-05-27 08:29:05,714 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:29:05,714 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ-1 -2025-05-27 08:29:05,715 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Dz-3 -2025-05-27 08:29:05,715 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:29:05,716 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Dz-3 -2025-05-27 08:29:05,716 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-2 -2025-05-27 08:29:05,716 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:29:05,717 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-2 -2025-05-27 08:29:05,717 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-1 -2025-05-27 08:29:05,717 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:29:05,718 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-1 -2025-05-27 08:29:05,718 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:29:05,718 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:29:05,719 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:29:05,719 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ2-2 -2025-05-27 08:29:05,719 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:29:05,720 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ2-2 -2025-05-27 08:29:05,720 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ƹ-2 -2025-05-27 08:29:05,720 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:29:05,721 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ƹ-2 -2025-05-27 08:29:05,721 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:29:05,721 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:29:05,722 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:29:05,722 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,722 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,723 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,723 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-2 -2025-05-27 08:29:05,723 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:29:05,723 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-2 -2025-05-27 08:29:05,724 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-1 -2025-05-27 08:29:05,724 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:29:05,724 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-1 -2025-05-27 08:29:05,725 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:29:05,725 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:29:05,725 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:29:05,726 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,726 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,726 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,727 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:29:05,727 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:29:05,727 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:29:05,727 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AAϰ-1 -2025-05-27 08:29:05,728 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:29:05,728 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in AAϰ-1 -2025-05-27 08:29:05,728 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-2 -2025-05-27 08:29:05,729 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:29:05,729 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-2 -2025-05-27 08:29:05,733 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:29:05,750 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:29:05,751 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:29:05,751 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -4 -2025-05-27 08:29:05,751 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:29:05,752 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -4 -2025-05-27 08:29:05,752 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-1 -2025-05-27 08:29:05,752 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:29:05,753 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-1 -2025-05-27 08:29:05,753 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,754 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,754 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,755 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-1 -2025-05-27 08:29:05,755 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:29:05,755 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-1 -2025-05-27 08:29:05,756 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,756 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,757 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,757 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-2 -2025-05-27 08:29:05,757 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:29:05,758 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-2 -2025-05-27 08:29:05,758 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:29:05,759 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:29:05,759 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:29:05,759 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-1 -2025-05-27 08:29:05,760 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:29:05,760 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-1 -2025-05-27 08:29:05,761 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:29:05,761 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:29:05,762 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:29:05,762 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-2 -2025-05-27 08:29:05,763 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:29:05,763 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-2 -2025-05-27 08:29:05,763 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,764 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,764 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,764 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-2 -2025-05-27 08:29:05,765 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:29:05,765 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-2 -2025-05-27 08:29:05,765 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,766 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,766 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,766 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-1 -2025-05-27 08:29:05,767 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:29:05,767 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-1 -2025-05-27 08:29:05,768 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-1 -2025-05-27 08:29:05,768 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:29:05,769 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-1 -2025-05-27 08:29:05,769 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-7 -2025-05-27 08:29:05,769 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:29:05,770 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-7 -2025-05-27 08:29:05,770 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-10 -2025-05-27 08:29:05,770 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:29:05,771 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-10 -2025-05-27 08:29:05,771 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-2 -2025-05-27 08:29:05,771 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:29:05,772 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-2 -2025-05-27 08:29:05,772 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-4 -2025-05-27 08:29:05,772 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:29:05,773 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-4 -2025-05-27 08:29:05,773 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-9 -2025-05-27 08:29:05,774 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:29:05,774 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-9 -2025-05-27 08:29:05,774 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-1 -2025-05-27 08:29:05,775 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:29:05,775 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-1 -2025-05-27 08:29:05,775 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-8 -2025-05-27 08:29:05,776 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:29:05,776 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-8 -2025-05-27 08:29:05,776 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-7 -2025-05-27 08:29:05,777 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:29:05,777 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-7 -2025-05-27 08:29:05,777 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-2 -2025-05-27 08:29:05,777 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:29:05,778 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-2 -2025-05-27 08:29:05,778 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-2 -2025-05-27 08:29:05,778 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:29:05,779 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-2 -2025-05-27 08:29:05,779 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-1 -2025-05-27 08:29:05,779 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:29:05,780 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-1 -2025-05-27 08:29:05,780 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-1 -2025-05-27 08:29:05,780 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:29:05,781 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-1 -2025-05-27 08:29:05,781 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-3 -2025-05-27 08:29:05,781 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:29:05,782 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-3 -2025-05-27 08:29:05,782 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-8 -2025-05-27 08:29:05,782 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:29:05,782 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-8 -2025-05-27 08:29:05,783 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-3 -2025-05-27 08:29:05,783 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:29:05,783 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-3 -2025-05-27 08:29:05,784 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,784 INFO ExportHelperExtension.cs: 1136 - Found 259 in AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,785 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [RefAxis] in AA򻯳Ʒ .SLDASM -2025-05-27 08:29:05,785 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:29:05,786 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:29:05,786 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:29:05,786 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:29:05,787 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:29:05,787 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:29:05,787 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:29:05,788 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:29:05,788 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ-1 -2025-05-27 08:29:05,788 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:29:05,788 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ-1 -2025-05-27 08:29:05,789 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Dz-3 -2025-05-27 08:29:05,789 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:29:05,789 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Dz-3 -2025-05-27 08:29:05,790 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-2 -2025-05-27 08:29:05,790 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:29:05,790 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-2 -2025-05-27 08:29:05,791 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-1 -2025-05-27 08:29:05,791 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:29:05,791 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-1 -2025-05-27 08:29:05,791 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:29:05,792 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:29:05,792 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:29:05,792 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ2-2 -2025-05-27 08:29:05,793 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:29:05,793 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ2-2 -2025-05-27 08:29:05,793 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ƹ-2 -2025-05-27 08:29:05,793 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:29:05,794 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ƹ-2 -2025-05-27 08:29:05,794 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:29:05,794 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:29:05,795 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:29:05,795 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,795 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,796 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:29:05,796 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-2 -2025-05-27 08:29:05,796 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:29:05,797 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-2 -2025-05-27 08:29:05,797 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-1 -2025-05-27 08:29:05,797 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:29:05,798 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-1 -2025-05-27 08:29:05,798 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:29:05,798 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:29:05,799 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:29:05,799 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,799 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,800 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:29:05,800 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:29:05,801 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:29:05,801 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:29:05,801 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AAϰ-1 -2025-05-27 08:29:05,802 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:29:05,802 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in AAϰ-1 -2025-05-27 08:29:05,802 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-2 -2025-05-27 08:29:05,803 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:29:05,803 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-2 -2025-05-27 08:29:05,803 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:29:05,804 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:29:05,804 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:29:05,804 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -4 -2025-05-27 08:29:05,804 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:29:05,805 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -4 -2025-05-27 08:29:05,805 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-1 -2025-05-27 08:29:05,824 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:29:05,825 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-1 -2025-05-27 08:29:05,825 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,825 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,826 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:29:05,826 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-1 -2025-05-27 08:29:05,827 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:29:05,827 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-1 -2025-05-27 08:29:05,827 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,827 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,828 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:29:05,828 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-2 -2025-05-27 08:29:05,828 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:29:05,829 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-2 -2025-05-27 08:29:05,829 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:29:05,829 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:29:05,830 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:29:05,830 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-1 -2025-05-27 08:29:05,830 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:29:05,831 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-1 -2025-05-27 08:29:05,831 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:29:05,831 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:29:05,831 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:29:05,832 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-2 -2025-05-27 08:29:05,832 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:29:05,832 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-2 -2025-05-27 08:29:05,833 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,833 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,833 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:29:05,834 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-2 -2025-05-27 08:29:05,834 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:29:05,834 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-2 -2025-05-27 08:29:05,834 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,835 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,835 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:29:05,835 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-1 -2025-05-27 08:29:05,836 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:29:05,836 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-1 -2025-05-27 08:29:05,836 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-1 -2025-05-27 08:29:05,837 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:29:05,837 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-1 -2025-05-27 08:29:05,837 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-7 -2025-05-27 08:29:05,838 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:29:05,838 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-7 -2025-05-27 08:29:05,838 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-10 -2025-05-27 08:29:05,838 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:29:05,839 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-10 -2025-05-27 08:29:05,839 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-2 -2025-05-27 08:29:05,839 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:29:05,840 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-2 -2025-05-27 08:29:05,840 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-4 -2025-05-27 08:29:05,840 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:29:05,841 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-4 -2025-05-27 08:29:05,841 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-9 -2025-05-27 08:29:05,841 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:29:05,841 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-9 -2025-05-27 08:29:05,842 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-1 -2025-05-27 08:29:05,842 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:29:05,842 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-1 -2025-05-27 08:29:05,842 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-8 -2025-05-27 08:29:05,843 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:29:05,843 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-8 -2025-05-27 08:29:05,843 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-7 -2025-05-27 08:29:05,844 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:29:05,844 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-7 -2025-05-27 08:29:05,844 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-2 -2025-05-27 08:29:05,844 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:29:05,845 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-2 -2025-05-27 08:29:05,845 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-2 -2025-05-27 08:29:05,845 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:29:05,846 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-2 -2025-05-27 08:29:05,846 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-1 -2025-05-27 08:29:05,846 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:29:05,846 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-1 -2025-05-27 08:29:05,847 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-1 -2025-05-27 08:29:05,847 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:29:05,847 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-1 -2025-05-27 08:29:05,848 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-3 -2025-05-27 08:29:05,848 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:29:05,848 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-3 -2025-05-27 08:29:05,848 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-8 -2025-05-27 08:29:05,849 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:29:05,849 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-8 -2025-05-27 08:29:05,849 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-3 -2025-05-27 08:29:05,850 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:29:05,850 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-3 -2025-05-27 08:29:05,966 INFO SwAddin.cs: 339 - Loading config tree -2025-05-27 08:29:05,967 INFO ExportPropertyManagerExtension.cs: 520 - Starting new configuration -2025-05-27 08:29:05,969 INFO SwAddin.cs: 344 - Showing property manager -2025-05-27 08:31:13,974 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:33:47,261 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:34:08,917 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:34:13,381 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:34:18,861 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:35:13,423 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:35:18,148 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:35:25,253 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:36:15,526 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:36:23,982 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:36:30,556 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:37:41,500 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:37:48,790 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:37:52,853 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:39:03,045 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:39:13,342 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:39:22,435 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:40:15,467 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:40:19,406 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:40:25,412 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:40:27,172 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:41:19,565 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:41:22,308 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:41:29,149 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:42:23,037 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:42:26,333 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:42:31,421 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:44:13,437 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:44:21,851 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:44:24,717 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:45:28,796 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:45:33,036 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:45:39,221 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:46:28,941 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:46:33,826 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:46:47,035 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:48:10,468 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:48:15,925 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:48:19,026 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:49:13,268 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:49:16,308 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:49:21,955 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:50:27,221 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:50:29,628 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:50:34,565 INFO ExportPropertyManager.cs: 1018 - OnComboboxSelectionChanged called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 08:52:35,833 INFO ExportPropertyManager.cs: 422 - Configuration saved -2025-05-27 08:52:36,025 INFO ExportHelperExtension.cs: 347 - Creating joint left_hip_pitch_link -2025-05-27 08:52:36,273 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child left_hip_pitch_link failed -2025-05-27 08:52:36,287 INFO ExportHelperExtension.cs: 347 - Creating joint left_leg_pitch_link -2025-05-27 08:52:36,373 WARN ExportHelperExtension.cs: 351 - Creating joint from parent left_hip_pitch_link to child left_leg_pitch_link failed -2025-05-27 08:52:36,387 INFO ExportHelperExtension.cs: 347 - Creating joint left_wheel2_link -2025-05-27 08:52:36,465 WARN ExportHelperExtension.cs: 351 - Creating joint from parent left_leg_pitch_link to child left_wheel2_link failed -2025-05-27 08:52:36,470 INFO ExportHelperExtension.cs: 347 - Creating joint left_wheel1_link -2025-05-27 08:52:36,547 WARN ExportHelperExtension.cs: 351 - Creating joint from parent left_hip_pitch_link to child left_wheel1_link failed -2025-05-27 08:52:36,551 INFO ExportHelperExtension.cs: 347 - Creating joint right_hip_pitch_link -2025-05-27 08:52:36,633 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child right_hip_pitch_link failed -2025-05-27 08:52:36,645 INFO ExportHelperExtension.cs: 347 - Creating joint right_leg_pitch_link -2025-05-27 08:52:36,728 WARN ExportHelperExtension.cs: 351 - Creating joint from parent right_hip_pitch_link to child right_leg_pitch_link failed -2025-05-27 08:52:36,742 INFO ExportHelperExtension.cs: 347 - Creating joint right_wheel2_link -2025-05-27 08:52:36,820 WARN ExportHelperExtension.cs: 351 - Creating joint from parent right_leg_pitch_link to child right_wheel2_link failed -2025-05-27 08:52:36,824 INFO ExportHelperExtension.cs: 347 - Creating joint right_wheel1_link -2025-05-27 08:52:36,902 WARN ExportHelperExtension.cs: 351 - Creating joint from parent right_hip_pitch_link to child right_wheel1_link failed -2025-05-27 08:52:36,906 INFO ExportHelperExtension.cs: 347 - Creating joint left_shoulder_link -2025-05-27 08:52:36,989 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child left_shoulder_link failed -2025-05-27 08:52:36,992 INFO ExportHelperExtension.cs: 347 - Creating joint left_arm1_link -2025-05-27 08:52:37,077 WARN ExportHelperExtension.cs: 351 - Creating joint from parent left_shoulder_link to child left_arm1_link failed -2025-05-27 08:52:37,087 INFO ExportHelperExtension.cs: 347 - Creating joint left_arm2_link -2025-05-27 08:52:37,170 WARN ExportHelperExtension.cs: 351 - Creating joint from parent left_arm1_link to child left_arm2_link failed -2025-05-27 08:52:37,218 INFO ExportHelperExtension.cs: 347 - Creating joint right_shoulder_link -2025-05-27 08:52:37,304 WARN ExportHelperExtension.cs: 351 - Creating joint from parent base_link to child right_shoulder_link failed -2025-05-27 08:52:37,307 INFO ExportHelperExtension.cs: 347 - Creating joint right_arm1_link -2025-05-27 08:52:37,393 WARN ExportHelperExtension.cs: 351 - Creating joint from parent right_shoulder_link to child right_arm1_link failed -2025-05-27 08:52:37,403 INFO ExportHelperExtension.cs: 347 - Creating joint right_arm2_link -2025-05-27 08:52:37,489 WARN ExportHelperExtension.cs: 351 - Creating joint from parent right_arm1_link to child right_arm2_link failed -2025-05-27 08:52:37,621 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,625 INFO ExportHelperExtension.cs: 1136 - Found 260 in AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,626 INFO ExportHelperExtension.cs: 1145 - Found 15 features of type [CoordSys] in AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,626 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:52:37,627 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:52:37,627 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:52:37,628 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:52:37,628 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:52:37,628 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:52:37,629 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:52:37,629 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:52:37,629 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ-1 -2025-05-27 08:52:37,629 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:52:37,630 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ-1 -2025-05-27 08:52:37,630 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Dz-3 -2025-05-27 08:52:37,630 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:52:37,631 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Dz-3 -2025-05-27 08:52:37,631 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-2 -2025-05-27 08:52:37,632 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:52:37,632 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-2 -2025-05-27 08:52:37,632 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ڲ-1 -2025-05-27 08:52:37,632 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:52:37,639 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ڲ-1 -2025-05-27 08:52:37,639 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:52:37,653 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:52:37,654 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:52:37,654 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from λģ2-2 -2025-05-27 08:52:37,655 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:52:37,655 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in λģ2-2 -2025-05-27 08:52:37,655 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ƹ-2 -2025-05-27 08:52:37,656 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:52:37,656 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ƹ-2 -2025-05-27 08:52:37,656 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:52:37,657 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:52:37,657 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:52:37,657 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,658 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,658 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,658 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-2 -2025-05-27 08:52:37,659 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:52:37,659 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-2 -2025-05-27 08:52:37,659 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-1 -2025-05-27 08:52:37,660 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:52:37,660 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-1 -2025-05-27 08:52:37,660 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:52:37,660 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:52:37,661 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:52:37,661 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,661 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,662 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,662 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -2 -2025-05-27 08:52:37,662 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:52:37,663 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -2 -2025-05-27 08:52:37,663 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from AAϰ-1 -2025-05-27 08:52:37,663 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:52:37,663 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in AAϰ-1 -2025-05-27 08:52:37,664 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-2 -2025-05-27 08:52:37,664 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:52:37,664 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-2 -2025-05-27 08:52:37,665 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -1 -2025-05-27 08:52:37,665 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:52:37,665 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -1 -2025-05-27 08:52:37,665 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -4 -2025-05-27 08:52:37,666 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:52:37,666 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -4 -2025-05-27 08:52:37,666 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-1 -2025-05-27 08:52:37,667 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:52:37,667 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-1 -2025-05-27 08:52:37,667 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,668 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,668 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,668 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 򻯵-1 -2025-05-27 08:52:37,668 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:52:37,669 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 򻯵-1 -2025-05-27 08:52:37,669 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,669 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,670 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,670 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Ӽ1-2 -2025-05-27 08:52:37,670 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:52:37,671 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Ӽ1-2 -2025-05-27 08:52:37,671 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:52:37,671 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:52:37,672 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:52:37,672 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-1 -2025-05-27 08:52:37,672 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:52:37,673 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-1 -2025-05-27 08:52:37,673 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from -3 -2025-05-27 08:52:37,673 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:52:37,673 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in -3 -2025-05-27 08:52:37,674 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-2 -2025-05-27 08:52:37,674 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:52:37,674 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-2 -2025-05-27 08:52:37,675 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,675 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,675 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,676 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ֧Ű-2 -2025-05-27 08:52:37,676 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:52:37,676 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ֧Ű-2 -2025-05-27 08:52:37,676 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,677 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,677 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,677 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϰһ-1 -2025-05-27 08:52:37,678 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:52:37,678 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϰһ-1 -2025-05-27 08:52:37,678 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from µ-1 -2025-05-27 08:52:37,679 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:52:37,679 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in µ-1 -2025-05-27 08:52:37,679 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-7 -2025-05-27 08:52:37,680 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:52:37,680 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-7 -2025-05-27 08:52:37,680 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-10 -2025-05-27 08:52:37,680 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:52:37,681 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-10 -2025-05-27 08:52:37,681 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-2 -2025-05-27 08:52:37,681 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:52:37,682 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-2 -2025-05-27 08:52:37,682 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-4 -2025-05-27 08:52:37,682 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:52:37,683 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-4 -2025-05-27 08:52:37,683 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-9 -2025-05-27 08:52:37,683 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:52:37,684 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-9 -2025-05-27 08:52:37,684 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-1 -2025-05-27 08:52:37,684 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:52:37,684 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-1 -2025-05-27 08:52:37,685 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-8 -2025-05-27 08:52:37,685 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:52:37,685 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-8 -2025-05-27 08:52:37,686 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 4th(i)-7 -2025-05-27 08:52:37,686 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:52:37,686 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 4th(i)-7 -2025-05-27 08:52:37,686 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-2 -2025-05-27 08:52:37,687 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:52:37,687 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-2 -2025-05-27 08:52:37,687 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 粿µ-2 -2025-05-27 08:52:37,688 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:52:37,691 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 粿µ-2 -2025-05-27 08:52:37,691 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from ϵ-1 -2025-05-27 08:52:37,709 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:52:37,709 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in ϵ-1 -2025-05-27 08:52:37,710 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-1 -2025-05-27 08:52:37,710 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:52:37,710 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-1 -2025-05-27 08:52:37,711 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from arm1_bendlink-3 -2025-05-27 08:52:37,711 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:52:37,711 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in arm1_bendlink-3 -2025-05-27 08:52:37,711 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from 3rd(i)-8 -2025-05-27 08:52:37,712 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:52:37,712 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in 3rd(i)-8 -2025-05-27 08:52:37,712 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from DC13_X540_DUMMY-3 -2025-05-27 08:52:37,713 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:52:37,713 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in DC13_X540_DUMMY-3 -2025-05-27 08:52:37,713 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,714 INFO ExportHelperExtension.cs: 1136 - Found 260 in AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,715 INFO ExportHelperExtension.cs: 1145 - Found 14 features of type [RefAxis] in AA򻯳Ʒ .SLDASM -2025-05-27 08:52:37,715 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2025-05-27 08:52:37,715 INFO ExportHelperExtension.cs: 1160 - 49 components to check -2025-05-27 08:52:37,715 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:52:37,716 INFO ExportHelperExtension.cs: 1136 - Found 72 in -2 -2025-05-27 08:52:37,716 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:52:37,716 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:52:37,717 INFO ExportHelperExtension.cs: 1136 - Found 24 in -1 -2025-05-27 08:52:37,717 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:52:37,717 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ-1 -2025-05-27 08:52:37,717 INFO ExportHelperExtension.cs: 1136 - Found 35 in λģ-1 -2025-05-27 08:52:37,718 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ-1 -2025-05-27 08:52:37,718 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Dz-3 -2025-05-27 08:52:37,718 INFO ExportHelperExtension.cs: 1136 - Found 35 in Dz-3 -2025-05-27 08:52:37,719 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Dz-3 -2025-05-27 08:52:37,719 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-2 -2025-05-27 08:52:37,719 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-2 -2025-05-27 08:52:37,720 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-2 -2025-05-27 08:52:37,720 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ڲ-1 -2025-05-27 08:52:37,720 INFO ExportHelperExtension.cs: 1136 - Found 27 in ڲ-1 -2025-05-27 08:52:37,720 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ڲ-1 -2025-05-27 08:52:37,721 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:52:37,721 INFO ExportHelperExtension.cs: 1136 - Found 26 in -1 -2025-05-27 08:52:37,721 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:52:37,722 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from λģ2-2 -2025-05-27 08:52:37,722 INFO ExportHelperExtension.cs: 1136 - Found 31 in λģ2-2 -2025-05-27 08:52:37,722 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in λģ2-2 -2025-05-27 08:52:37,723 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ƹ-2 -2025-05-27 08:52:37,723 INFO ExportHelperExtension.cs: 1136 - Found 39 in Ƹ-2 -2025-05-27 08:52:37,723 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ƹ-2 -2025-05-27 08:52:37,723 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:52:37,724 INFO ExportHelperExtension.cs: 1136 - Found 72 in -1 -2025-05-27 08:52:37,724 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:52:37,724 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,725 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,725 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-4 -2025-05-27 08:52:37,725 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-2 -2025-05-27 08:52:37,726 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-2 -2025-05-27 08:52:37,726 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-2 -2025-05-27 08:52:37,726 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-1 -2025-05-27 08:52:37,727 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-1 -2025-05-27 08:52:37,727 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-1 -2025-05-27 08:52:37,727 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:52:37,728 INFO ExportHelperExtension.cs: 1136 - Found 33 in -2 -2025-05-27 08:52:37,728 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:52:37,728 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,728 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,729 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-5 -2025-05-27 08:52:37,729 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -2 -2025-05-27 08:52:37,729 INFO ExportHelperExtension.cs: 1136 - Found 34 in -2 -2025-05-27 08:52:37,730 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -2 -2025-05-27 08:52:37,730 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from AAϰ-1 -2025-05-27 08:52:37,730 INFO ExportHelperExtension.cs: 1136 - Found 27 in AAϰ-1 -2025-05-27 08:52:37,731 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in AAϰ-1 -2025-05-27 08:52:37,731 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-2 -2025-05-27 08:52:37,731 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-2 -2025-05-27 08:52:37,731 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-2 -2025-05-27 08:52:37,732 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -1 -2025-05-27 08:52:37,732 INFO ExportHelperExtension.cs: 1136 - Found 33 in -1 -2025-05-27 08:52:37,732 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -1 -2025-05-27 08:52:37,733 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -4 -2025-05-27 08:52:37,733 INFO ExportHelperExtension.cs: 1136 - Found 33 in -4 -2025-05-27 08:52:37,733 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -4 -2025-05-27 08:52:37,733 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-1 -2025-05-27 08:52:37,734 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-1 -2025-05-27 08:52:37,734 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-1 -2025-05-27 08:52:37,734 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,735 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,735 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-2 -2025-05-27 08:52:37,736 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 򻯵-1 -2025-05-27 08:52:37,736 INFO ExportHelperExtension.cs: 1136 - Found 31 in 򻯵-1 -2025-05-27 08:52:37,736 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 򻯵-1 -2025-05-27 08:52:37,736 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,737 INFO ExportHelperExtension.cs: 1136 - Found 59 in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,737 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Sealed-Lead-Acid-12V-1.3Ah-1 -2025-05-27 08:52:37,738 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Ӽ1-2 -2025-05-27 08:52:37,738 INFO ExportHelperExtension.cs: 1136 - Found 46 in Ӽ1-2 -2025-05-27 08:52:37,738 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Ӽ1-2 -2025-05-27 08:52:37,738 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:52:37,739 INFO ExportHelperExtension.cs: 1136 - Found 34 in -3 -2025-05-27 08:52:37,739 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:52:37,739 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-1 -2025-05-27 08:52:37,740 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-1 -2025-05-27 08:52:37,740 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-1 -2025-05-27 08:52:37,740 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from -3 -2025-05-27 08:52:37,741 INFO ExportHelperExtension.cs: 1136 - Found 33 in -3 -2025-05-27 08:52:37,741 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in -3 -2025-05-27 08:52:37,741 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-2 -2025-05-27 08:52:37,742 INFO ExportHelperExtension.cs: 1136 - Found 60 in ϰһ-2 -2025-05-27 08:52:37,742 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-2 -2025-05-27 08:52:37,742 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,743 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,743 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-1 -2025-05-27 08:52:37,743 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ֧Ű-2 -2025-05-27 08:52:37,744 INFO ExportHelperExtension.cs: 1136 - Found 34 in ֧Ű-2 -2025-05-27 08:52:37,747 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ֧Ű-2 -2025-05-27 08:52:37,748 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,772 INFO ExportHelperExtension.cs: 1136 - Found 37 in Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,772 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Angle For Aluminum Profile 3030-3 -2025-05-27 08:52:37,773 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϰһ-1 -2025-05-27 08:52:37,773 INFO ExportHelperExtension.cs: 1136 - Found 59 in ϰһ-1 -2025-05-27 08:52:37,774 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϰһ-1 -2025-05-27 08:52:37,774 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from µ-1 -2025-05-27 08:52:37,774 INFO ExportHelperExtension.cs: 1136 - Found 31 in µ-1 -2025-05-27 08:52:37,775 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in µ-1 -2025-05-27 08:52:37,775 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-7 -2025-05-27 08:52:37,775 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-7 -2025-05-27 08:52:37,776 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-7 -2025-05-27 08:52:37,776 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-10 -2025-05-27 08:52:37,776 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-10 -2025-05-27 08:52:37,777 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-10 -2025-05-27 08:52:37,777 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-2 -2025-05-27 08:52:37,777 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-2 -2025-05-27 08:52:37,777 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-2 -2025-05-27 08:52:37,778 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-4 -2025-05-27 08:52:37,778 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-4 -2025-05-27 08:52:37,778 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-4 -2025-05-27 08:52:37,779 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-9 -2025-05-27 08:52:37,779 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-9 -2025-05-27 08:52:37,779 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-9 -2025-05-27 08:52:37,780 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-1 -2025-05-27 08:52:37,780 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-1 -2025-05-27 08:52:37,780 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-1 -2025-05-27 08:52:37,780 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-8 -2025-05-27 08:52:37,781 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-8 -2025-05-27 08:52:37,781 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-8 -2025-05-27 08:52:37,781 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 4th(i)-7 -2025-05-27 08:52:37,782 INFO ExportHelperExtension.cs: 1136 - Found 28 in 4th(i)-7 -2025-05-27 08:52:37,782 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 4th(i)-7 -2025-05-27 08:52:37,782 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-2 -2025-05-27 08:52:37,783 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-2 -2025-05-27 08:52:37,783 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-2 -2025-05-27 08:52:37,783 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 粿µ-2 -2025-05-27 08:52:37,784 INFO ExportHelperExtension.cs: 1136 - Found 39 in 粿µ-2 -2025-05-27 08:52:37,784 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 粿µ-2 -2025-05-27 08:52:37,784 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from ϵ-1 -2025-05-27 08:52:37,784 INFO ExportHelperExtension.cs: 1136 - Found 29 in ϵ-1 -2025-05-27 08:52:37,785 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in ϵ-1 -2025-05-27 08:52:37,785 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-1 -2025-05-27 08:52:37,785 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-1 -2025-05-27 08:52:37,786 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-1 -2025-05-27 08:52:37,786 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from arm1_bendlink-3 -2025-05-27 08:52:37,786 INFO ExportHelperExtension.cs: 1136 - Found 36 in arm1_bendlink-3 -2025-05-27 08:52:37,787 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in arm1_bendlink-3 -2025-05-27 08:52:37,787 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from 3rd(i)-8 -2025-05-27 08:52:37,788 INFO ExportHelperExtension.cs: 1136 - Found 41 in 3rd(i)-8 -2025-05-27 08:52:37,788 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in 3rd(i)-8 -2025-05-27 08:52:37,788 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from DC13_X540_DUMMY-3 -2025-05-27 08:52:37,789 INFO ExportHelperExtension.cs: 1136 - Found 28 in DC13_X540_DUMMY-3 -2025-05-27 08:52:37,789 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in DC13_X540_DUMMY-3 -2025-05-27 08:52:37,832 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2025-05-27 09:15:11,335 INFO AssemblyExportForm.cs: 253 - Completing URDF export -2025-05-27 09:15:11,350 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found -nametruebase_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametruetypetruexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalsebase_linklinktruenametrueleft_hip_pitch_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_hip_pitch_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_hip_pitchleft_hip_pitchlinktruenametrueleft_leg_pitch_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_leg_pitch_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_leg_pitchleft_leg_pitchlinktruenametrueleft_wheel2_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_wheel2_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_wheel2left_wheel2linktruefalsegD4AAAUAAAD//v8dFlmnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwBuj8JrNXU6Zy0AMQBAABZZp09/gQQAAAAQAAAAAQAAAAIAAAA8AAAARwAAAA==falsefalsefalsegD4AAAUAAAD//v8fFlmnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwB/gX9n3o+lY/ZOQgAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAPAAAABoAAAA=gD4AAAUAAAD//v8cFlmnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwDvetZ2QgAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAPAAAAB0AAAA=gD4AAAUAAAD//v8fFlmnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwB/gX9nXwAWWadPMQAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAPAAAABkAAAA=falsefalsenametrueleft_wheel1_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_wheel1_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_wheel1left_wheel1linktruefalsegD4AAAUAAAD//v8dhVGnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwBuj8JrNXU6Zy0AMQBAAIVRp09/gQQAAAAQAAAAAQAAAAIAAAA7AAAAGQAAAA==falsefalsefalsegD4AAAUAAAD//v8TgHsWUzV1OmctADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAFwIAAA==gD4AAAUAAAD//v8dhVGnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwDzU4VRf4F/Zy0AMQBAAIVRp09/gQQAAAAQAAAAAQAAAAIAAAA7AAAAGgAAAA==gD4AAAUAAAD//v8gFlmnT3+BLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwCFUX+B3o+lY9VscFFCAC0AMQBAABZZp09/gQQAAAAQAAAAAQAAAAIAAAA8AAAALgAAAA==falsefalsenametrueright_hip_pitch_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_hip_pitch_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_hip_pitchright_hip_pitchlinktruenametrueright_leg_pitch_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_leg_pitch_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_leg_pitchright_leg_pitchlinktruenametrueright_wheel2_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_wheel2_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_wheel2right_wheel2linktruefalsegD4AAAUAAAD//v8dFlmnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwBuj8JrNXU6Zy0AMQBAABZZp09/gQQAAAAQAAAAAQAAAAIAAAAbAAAARwAAAA==falsefalsefalsegD4AAAUAAAD//v8cFlmnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwDvetZ2QgAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAGwAAAB0AAAA=gD4AAAUAAAD//v8fFlmnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwB/gX9n3o+lY/ZOQgAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAGwAAABoAAAA=gD4AAAUAAAD//v8fFlmnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwB/gX9nXwAWWadPMQAtADEAQAAWWadPf4EEAAAAEAAAAAEAAAACAAAAGwAAABkAAAA=falsefalsenametrueright_wheel1_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_wheel1_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_wheel1right_wheel1linktruefalsegD4AAAUAAAD//v8dhVGnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwBuj8JrNXU6Zy0AMQBAAIVRp09/gQQAAAAQAAAAAQAAAAIAAAAaAAAAGQAAAA==falsefalsefalsegD4AAAUAAAD//v8TgHsWUzV1OmctADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAIAIAAA==gD4AAAUAAAD//v8gFlmnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwCFUX+B3o+lY9VscFFCAC0AMQBAABZZp09/gQQAAAAQAAAAAQAAAAIAAAAbAAAALgAAAA==gD4AAAUAAAD//v8dhVGnT3+BLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOLwDzU4VRf4F/Zy0AMQBAAIVRp09/gQQAAAAQAAAAAQAAAAIAAAAaAAAAGgAAAA==falsefalsenametrueleft_shoulder_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_shoulder_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_shoulderleft_shoulderlinktruenametrueleft_arm1_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_arm1_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_arm1left_arm1linktruenametrueleft_arm2_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueleft_arm2_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_left_arm2left_arm2linktruefalsegD4AAAUAAAD//v8eRABDADEAMwBfAFgANQA0ADAAXwBEAFUATQBNAFkALQAzAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAJMDAAA=gD4AAAUAAAD//v8VNAB0AGgAKABpACkALQA3AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAIwDAAA=gD4AAAUAAAD//v8eRABDADEAMwBfAFgANQA0ADAAXwBEAFUATQBNAFkALQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAJEDAAA=gD4AAAUAAAD//v8VNAB0AGgAKABpACkALQA5AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAI4DAAA=falsefalsefalsegD4AAAUAAAD//v8WqYCAgQpONXU6Z4B7FlMtADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAIAMAAA==gD4AAAUAAAD//v8cYQByAG0AMQBfAGIAZQBuAGQAbABpAG4AawAtADMAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAbQMAAA==gD4AAAUAAAD//v8VMwByAGQAKABpACkALQA4AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAIkDAAA=falsefalsefalsegD4AAAUAAAD//v8WqYDokApOC041dTpn3o8tADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAGwMAAA==falsefalsenametrueright_shoulder_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_shoulder_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_shoulderright_shoulderlinktruenametrueright_arm1_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_arm1_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_arm1right_arm1linktruenametrueright_arm2_linkxyztrue000rpytrue000originfalsefalsevaluetrue0massfalseixxtrue0ixytrue0ixztrue0iyytrue0iyztrue0izztrue0inertiafalseinertialfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruenametruergbatrue1111colorfalsefilenametruetexturefalsematerialfalsevisualfalsexyztrue000rpytrue000originfalsefalsefilenametruemeshfalsegeometrytruecollisionfalsenametrueright_arm2_jointtypetruerevolutexyztrue000rpytrue000originfalsefalselinktrueparenttruelinktruechildtruexyztrue000axisfalselowerfalseupperfalseefforttruevelocitytruelimitfalserisingfalsefallingfalsecalibrationfalsedampingfalsefrictionfalsedynamicsfalsesoft_upperfalsesoft_lowerfalsek_positionfalsek_velocitytruesafety_controllerfalsejointtruemultiplierfalseoffsetfalsemimicfalsejointfalseA_right_arm2right_arm2linktruefalsegD4AAAUAAAD//v8eRABDADEAMwBfAFgANQA0ADAAXwBEAFUATQBNAFkALQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAJIDAAA=gD4AAAUAAAD//v8WNAB0AGgAKABpACkALQAxADAAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAjwMAAA==gD4AAAUAAAD//v8VNAB0AGgAKABpACkALQA4AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAI0DAAA=gD4AAAUAAAD//v8eRABDADEAMwBfAFgANQA0ADAAXwBEAFUATQBNAFkALQA0AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAJQDAAA=falsefalsefalsegD4AAAUAAAD//v8cYQByAG0AMQBfAGIAZQBuAGQAbABpAG4AawAtADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAKgMAAA==gD4AAAUAAAD//v8VMwByAGQAKABpACkALQA3AEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAIUDAAA=gD4AAAUAAAD//v8WqYCAgQpONXU6Z4B7FlMtADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAIQMAAA==falsefalsefalsegD4AAAUAAAD//v8WqYDokApOC041dTpn3o8tADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAGgMAAA==falsefalsefalsegD4AAAUAAAD//v8WsGUKTkpTq47mUwBOSlMtADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAegIAAA==gD4AAAUAAAD//v8WqYCAgQtONXU6Z4B7FlMtADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAEAMAAA==gD4AAAUAAAD//v8SL2WRZH9nLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAALoCAAA=gD4AAAUAAAD//v8WqYCAgQtONXU6Z4B7FlMtADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAEQMAAA==gD4AAAUAAAD//v8SL2WRZH9nLQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAMYCAAA=gD4AAAUAAAD//v8uQQBuAGcAbABlACAARgBvAHIAIABBAGwAdQBtAGkAbgB1AG0AIABQAHIAbwBmAGkAbABlACAAMwAwADMAMAAtADMAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAwQIAAA==gD4AAAUAAAD//v8uQQBuAGcAbABlACAARgBvAHIAIABBAGwAdQBtAGkAbgB1AG0AIABQAHIAbwBmAGkAbABlACAAMwAwADMAMAAtADUAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAA8AIAAA==gD4AAAUAAAD//v8uQQBuAGcAbABlACAARgBvAHIAIABBAGwAdQBtAGkAbgB1AG0AIABQAHIAbwBmAGkAbABlACAAMwAwADMAMAAtADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAuwIAAA==gD4AAAUAAAD//v8uQQBuAGcAbABlACAARgBvAHIAIABBAGwAdQBtAGkAbgB1AG0AIABQAHIAbwBmAGkAbABlACAAMwAwADMAMAAtADQAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAxAIAAA==gD4AAAUAAAD//v8pUwBlAGEAbABlAGQALQBMAGUAYQBkAC0AQQBjAGkAZAAtADEAMgBWAC0AMQAuADMAQQBoAC0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAAB+AgAAgD4AAAUAAAD//v8VNXVgbN6PpWP2TjEALQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAH8CAAA=gD4AAAUAAAD//v8pUwBlAGEAbABlAGQALQBMAGUAYQBkAC0AQQBjAGkAZAAtADEAMgBWAC0AMQAuADMAQQBoAC0AMgBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAACAAgAAgD4AAAUAAAD//v8VNXVgbN6PpWP2TjEALQAyAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAIYCAAA=gD4AAAUAAAD//v8UgHsWU3SPf2KnXi0AMgBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAABCAgAAgD4AAAUAAAD//v8UgHsWU3SPf2KnXi0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAABBAgAAgD4AAAUAAAD//v8pQQBBAIB7FlOwZQpOSlOrji0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6Ti8AsGXmXXCB6JBzXvBTLQAxAEAAQQBBAIB7FlOwZQpOSlOrjgQAAAAQAAAAAQAAAAIAAAD0AQAAGQAAAA==gD4AAAUAAAD//v8pQQBBAIB7FlOwZQpOSlOrji0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6Ti8AsGXzU3CB6JBzXvBTLQAxAEAAQQBBAIB7FlOwZQpOSlOrjgQAAAAQAAAAAQAAAAIAAAD0AQAARwAAAA==gD4AAAUAAAD//v8T0mMAlahjRmctADIAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAEAEAAA==gD4AAAUAAAD//v8UmltNTyFqV1cyAC0AMgBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAAAKAQAAgD4AAAUAAAD//v8TmltNTyFqV1ctADEAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAcwAAAA==gD4AAAUAAAD//v8TbVHSidJjAJUtADMAQABBAEEAgHsWUxBiwVQgAIxbdGU6Z2hWuk4EAAAAEAAAAAEAAAABAAAAFQEAAA==gD4AAAUAAAD//v8VsGUKTkpTq44ATkpTLQAxAEAAQQBBAIB7FlMQYsFUIACMW3RlOmdoVrpOBAAAABAAAAABAAAAAQAAAKACAAA=gD4AAAUAAAD//v8RSVF0jy0AMwBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAACaAgAAgD4AAAUAAAD//v8RSVF0jy0AMgBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAACZAgAAgD4AAAUAAAD//v8UgHsWU3SPf2KnXi0AMwBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAABFAgAAgD4AAAUAAAD//v8UgHsWU3SPf2KnXi0ANABAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6TgQAAAAQAAAAAQAAAAEAAABIAgAAgD4AAAUAAAD//v8c81PLmi0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6Ti8A81OnTzV1OmenXi0AMQBAAPNTy5oEAAAAEAAAAAEAAAACAAAAVgAAABkAAAA=gD4AAAUAAAD//v8c5l3Lmi0AMQBAAEEAQQCAexZTEGLBVCAAjFt0ZTpnaFa6Ti8A5l2nTzV1OmenXi0AMQBAAOZdy5oEAAAAEAAAAAEAAAACAAAASQAAABkAAAA=falsefalse -2025-05-27 09:15:52,738 INFO AssemblyExportForm.cs: 309 - Saving URDF package to E:\robot model\robot3 -2025-05-27 09:15:52,739 INFO ExportHelper.cs: 147 - Beginning the export process -2025-05-27 09:15:52,741 INFO ExportHelper.cs: 153 - Creating package directories with name robot3 and save path E:\robot model -2025-05-27 09:15:55,664 INFO ExportHelper.cs: 162 - Creating CMakeLists.txt at E:\robot model\robot3\CMakeLists.txt -2025-05-27 09:15:55,665 INFO ExportHelper.cs: 166 - Creating joint names config at E:\robot model\robot3\config\joint_names_robot3.yaml -2025-05-27 09:15:55,666 INFO ExportHelper.cs: 170 - Creating package.xml at E:\robot model\robot3\package.xml -2025-05-27 09:15:55,666 INFO PackageXMLWriter.cs: 21 - Creating package.xml at E:\robot model\robot3\package.xml -2025-05-27 09:15:55,668 INFO ExportHelper.cs: 177 - Creating RVIZ launch file in E:\robot model\robot3\launch\ -2025-05-27 09:15:55,670 INFO ExportHelper.cs: 182 - Creating Gazebo launch file in E:\robot model\robot3\launch\ -2025-05-27 09:15:55,672 INFO ExportHelper.cs: 187 - Saving existing STL preferences -2025-05-27 09:15:55,673 INFO ExportHelper.cs: 450 - Saving users preferences -2025-05-27 09:15:55,674 INFO ExportHelper.cs: 190 - Modifying STL preferences -2025-05-27 09:15:55,675 INFO ExportHelper.cs: 464 - Setting STL preferences -2025-05-27 09:15:55,681 INFO ExportHelper.cs: 196 - Found 0 hidden components -2025-05-27 09:15:55,681 INFO ExportHelper.cs: 197 - Hiding all components -2025-05-27 09:15:56,106 INFO ExportHelper.cs: 204 - Beginning individual files export -2025-05-27 09:15:56,108 INFO ExportHelper.cs: 270 - Exporting link: base_link -2025-05-27 09:15:56,109 INFO ExportHelper.cs: 272 - Link base_link has 4 children -2025-05-27 09:15:56,110 INFO ExportHelper.cs: 270 - Exporting link: left_hip_pitch_link -2025-05-27 09:15:56,110 INFO ExportHelper.cs: 272 - Link left_hip_pitch_link has 2 children -2025-05-27 09:15:56,110 INFO ExportHelper.cs: 270 - Exporting link: left_leg_pitch_link -2025-05-27 09:15:56,110 INFO ExportHelper.cs: 272 - Link left_leg_pitch_link has 1 children -2025-05-27 09:15:56,111 INFO ExportHelper.cs: 270 - Exporting link: left_wheel2_link -2025-05-27 09:15:56,111 INFO ExportHelper.cs: 272 - Link left_wheel2_link has 0 children -2025-05-27 09:15:56,112 INFO ExportHelper.cs: 317 - left_wheel2_link: Exporting STL with coordinate frame left_wheel2 -2025-05-27 09:15:56,112 INFO ExportHelper.cs: 322 - left_wheel2_link: Reference geometry name -2025-05-27 09:15:56,420 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_wheel2_link.STL -2025-05-27 09:15:56,718 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:56,719 INFO ExportHelper.cs: 317 - left_leg_pitch_link: Exporting STL with coordinate frame left_leg_pitch -2025-05-27 09:15:56,719 INFO ExportHelper.cs: 322 - left_leg_pitch_link: Reference geometry name -2025-05-27 09:15:56,922 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_leg_pitch_link.STL -2025-05-27 09:15:57,192 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:57,193 INFO ExportHelper.cs: 270 - Exporting link: left_wheel1_link -2025-05-27 09:15:57,194 INFO ExportHelper.cs: 272 - Link left_wheel1_link has 0 children -2025-05-27 09:15:57,194 INFO ExportHelper.cs: 317 - left_wheel1_link: Exporting STL with coordinate frame left_wheel1 -2025-05-27 09:15:57,194 INFO ExportHelper.cs: 322 - left_wheel1_link: Reference geometry name -2025-05-27 09:15:57,384 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_wheel1_link.STL -2025-05-27 09:15:57,613 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:57,614 INFO ExportHelper.cs: 317 - left_hip_pitch_link: Exporting STL with coordinate frame left_hip_pitch -2025-05-27 09:15:57,614 INFO ExportHelper.cs: 322 - left_hip_pitch_link: Reference geometry name -2025-05-27 09:15:57,789 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_hip_pitch_link.STL -2025-05-27 09:15:58,052 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:58,053 INFO ExportHelper.cs: 270 - Exporting link: right_hip_pitch_link -2025-05-27 09:15:58,054 INFO ExportHelper.cs: 272 - Link right_hip_pitch_link has 2 children -2025-05-27 09:15:58,054 INFO ExportHelper.cs: 270 - Exporting link: right_leg_pitch_link -2025-05-27 09:15:58,055 INFO ExportHelper.cs: 272 - Link right_leg_pitch_link has 1 children -2025-05-27 09:15:58,055 INFO ExportHelper.cs: 270 - Exporting link: right_wheel2_link -2025-05-27 09:15:58,056 INFO ExportHelper.cs: 272 - Link right_wheel2_link has 0 children -2025-05-27 09:15:58,056 INFO ExportHelper.cs: 317 - right_wheel2_link: Exporting STL with coordinate frame right_wheel2 -2025-05-27 09:15:58,056 INFO ExportHelper.cs: 322 - right_wheel2_link: Reference geometry name -2025-05-27 09:15:58,283 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_wheel2_link.STL -2025-05-27 09:15:58,501 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:58,502 INFO ExportHelper.cs: 317 - right_leg_pitch_link: Exporting STL with coordinate frame right_leg_pitch -2025-05-27 09:15:58,502 INFO ExportHelper.cs: 322 - right_leg_pitch_link: Reference geometry name -2025-05-27 09:15:58,677 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_leg_pitch_link.STL -2025-05-27 09:15:58,941 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:58,942 INFO ExportHelper.cs: 270 - Exporting link: right_wheel1_link -2025-05-27 09:15:58,943 INFO ExportHelper.cs: 272 - Link right_wheel1_link has 0 children -2025-05-27 09:15:58,943 INFO ExportHelper.cs: 317 - right_wheel1_link: Exporting STL with coordinate frame right_wheel1 -2025-05-27 09:15:58,943 INFO ExportHelper.cs: 322 - right_wheel1_link: Reference geometry name -2025-05-27 09:15:59,122 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_wheel1_link.STL -2025-05-27 09:15:59,350 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:59,351 INFO ExportHelper.cs: 317 - right_hip_pitch_link: Exporting STL with coordinate frame right_hip_pitch -2025-05-27 09:15:59,351 INFO ExportHelper.cs: 322 - right_hip_pitch_link: Reference geometry name -2025-05-27 09:15:59,524 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_hip_pitch_link.STL -2025-05-27 09:15:59,799 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:15:59,800 INFO ExportHelper.cs: 270 - Exporting link: left_shoulder_link -2025-05-27 09:15:59,801 INFO ExportHelper.cs: 272 - Link left_shoulder_link has 1 children -2025-05-27 09:15:59,802 INFO ExportHelper.cs: 270 - Exporting link: left_arm1_link -2025-05-27 09:15:59,802 INFO ExportHelper.cs: 272 - Link left_arm1_link has 1 children -2025-05-27 09:15:59,803 INFO ExportHelper.cs: 270 - Exporting link: left_arm2_link -2025-05-27 09:15:59,803 INFO ExportHelper.cs: 272 - Link left_arm2_link has 0 children -2025-05-27 09:15:59,803 INFO ExportHelper.cs: 317 - left_arm2_link: Exporting STL with coordinate frame left_arm2 -2025-05-27 09:15:59,803 INFO ExportHelper.cs: 322 - left_arm2_link: Reference geometry name -2025-05-27 09:15:59,994 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_arm2_link.STL -2025-05-27 09:16:00,347 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:00,348 INFO ExportHelper.cs: 317 - left_arm1_link: Exporting STL with coordinate frame left_arm1 -2025-05-27 09:16:00,349 INFO ExportHelper.cs: 322 - left_arm1_link: Reference geometry name -2025-05-27 09:16:00,533 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_arm1_link.STL -2025-05-27 09:16:00,792 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:00,793 INFO ExportHelper.cs: 317 - left_shoulder_link: Exporting STL with coordinate frame left_shoulder -2025-05-27 09:16:00,793 INFO ExportHelper.cs: 322 - left_shoulder_link: Reference geometry name -2025-05-27 09:16:00,961 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\left_shoulder_link.STL -2025-05-27 09:16:01,173 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:01,174 INFO ExportHelper.cs: 270 - Exporting link: right_shoulder_link -2025-05-27 09:16:01,174 INFO ExportHelper.cs: 272 - Link right_shoulder_link has 1 children -2025-05-27 09:16:01,175 INFO ExportHelper.cs: 270 - Exporting link: right_arm1_link -2025-05-27 09:16:01,175 INFO ExportHelper.cs: 272 - Link right_arm1_link has 1 children -2025-05-27 09:16:01,176 INFO ExportHelper.cs: 270 - Exporting link: right_arm2_link -2025-05-27 09:16:01,176 INFO ExportHelper.cs: 272 - Link right_arm2_link has 0 children -2025-05-27 09:16:01,176 INFO ExportHelper.cs: 317 - right_arm2_link: Exporting STL with coordinate frame right_arm2 -2025-05-27 09:16:01,177 INFO ExportHelper.cs: 322 - right_arm2_link: Reference geometry name -2025-05-27 09:16:01,361 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_arm2_link.STL -2025-05-27 09:16:01,714 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:01,715 INFO ExportHelper.cs: 317 - right_arm1_link: Exporting STL with coordinate frame right_arm1 -2025-05-27 09:16:01,716 INFO ExportHelper.cs: 322 - right_arm1_link: Reference geometry name -2025-05-27 09:16:01,910 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_arm1_link.STL -2025-05-27 09:16:02,189 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:02,190 INFO ExportHelper.cs: 317 - right_shoulder_link: Exporting STL with coordinate frame right_shoulder -2025-05-27 09:16:02,190 INFO ExportHelper.cs: 322 - right_shoulder_link: Reference geometry name -2025-05-27 09:16:02,359 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\right_shoulder_link.STL -2025-05-27 09:16:02,590 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:02,590 INFO ExportHelper.cs: 317 - base_link: Exporting STL with coordinate frame base_link -2025-05-27 09:16:02,591 INFO ExportHelper.cs: 322 - base_link: Reference geometry name -2025-05-27 09:16:03,033 INFO ExportHelper.cs: 330 - Saving STL to E:\robot model\robot3\meshes\base_link.STL -2025-05-27 09:16:03,910 INFO ExportHelper.cs: 405 - Removing SW header in STL file -2025-05-27 09:16:03,911 INFO ExportHelper.cs: 145 - Showing all components except previously hidden components -2025-05-27 09:16:05,012 INFO ExportHelper.cs: 145 - Resetting STL preferences -2025-05-27 09:16:05,013 INFO ExportHelper.cs: 478 - Returning STL preferences to user preferences -2025-05-27 09:16:05,013 INFO ExportHelper.cs: 228 - Writing URDF file to E:\robot model\robot3\urdf\robot3.urdf -2025-05-27 09:16:05,093 INFO CSVImportExport.cs: 32 - Writing CSV file E:\robot model\robot3\urdf\robot3.csv -2025-05-27 09:16:05,109 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,110 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,110 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,111 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,111 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,111 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,112 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,112 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,112 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,113 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,113 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,113 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,114 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,114 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,114 ERROR CSVImportExport.cs: 130 - The following columns were not written to the CSV: Link.Joint.ChildLink.link, -2025-05-27 09:16:05,115 INFO ExportHelper.cs: 234 - Copying log file -2025-05-27 09:16:05,117 INFO ExportHelper.cs: 439 - Copying C:\Users\86150\sw2urdf_logs\sw2urdf.log to E:\robot model\robot3\export.log diff --git a/RobotOS1/launch/display.launch b/RobotOS1/launch/display.launch deleted file mode 100755 index 3737240..0000000 --- a/RobotOS1/launch/display.launch +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/RobotOS1/launch/gazebo.launch b/RobotOS1/launch/gazebo.launch deleted file mode 100755 index 0a92703..0000000 --- a/RobotOS1/launch/gazebo.launch +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/RobotOS1/package.xml b/RobotOS1/package.xml deleted file mode 100755 index 315ac31..0000000 --- a/RobotOS1/package.xml +++ /dev/null @@ -1,21 +0,0 @@ - - robot3 - 1.0.0 - -

URDF Description package for robot3

-

This package contains configuration data, 3D models and launch files -for robot3 robot

-
- TODO - - BSD - catkin - roslaunch - robot_state_publisher - rviz - joint_state_publisher_gui - gazebo - - - -
\ No newline at end of file diff --git a/RobotOS1/urdf/base_link.STL b/RobotOS1/urdf/base_link.STL deleted file mode 100755 index 9b83836..0000000 Binary files a/RobotOS1/urdf/base_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_arm1_link.STL b/RobotOS1/urdf/left_arm1_link.STL deleted file mode 100755 index b490296..0000000 Binary files a/RobotOS1/urdf/left_arm1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_arm2_link.STL b/RobotOS1/urdf/left_arm2_link.STL deleted file mode 100755 index e86a41d..0000000 Binary files a/RobotOS1/urdf/left_arm2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_hip_pitch_link.STL b/RobotOS1/urdf/left_hip_pitch_link.STL deleted file mode 100755 index a11933c..0000000 Binary files a/RobotOS1/urdf/left_hip_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_leg_pitch_link.STL b/RobotOS1/urdf/left_leg_pitch_link.STL deleted file mode 100755 index 0edcbb9..0000000 Binary files a/RobotOS1/urdf/left_leg_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_shoulder_link.STL b/RobotOS1/urdf/left_shoulder_link.STL deleted file mode 100755 index f111585..0000000 Binary files a/RobotOS1/urdf/left_shoulder_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_wheel1_link.STL b/RobotOS1/urdf/left_wheel1_link.STL deleted file mode 100755 index 2354012..0000000 Binary files a/RobotOS1/urdf/left_wheel1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/left_wheel2_link.STL b/RobotOS1/urdf/left_wheel2_link.STL deleted file mode 100755 index 43387e6..0000000 Binary files a/RobotOS1/urdf/left_wheel2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/base_link.STL b/RobotOS1/urdf/meshes/base_link.STL deleted file mode 100755 index 9b83836..0000000 Binary files a/RobotOS1/urdf/meshes/base_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_arm1_link.STL b/RobotOS1/urdf/meshes/left_arm1_link.STL deleted file mode 100755 index b490296..0000000 Binary files a/RobotOS1/urdf/meshes/left_arm1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_arm2_link.STL b/RobotOS1/urdf/meshes/left_arm2_link.STL deleted file mode 100755 index e86a41d..0000000 Binary files a/RobotOS1/urdf/meshes/left_arm2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_hip_pitch_link.STL b/RobotOS1/urdf/meshes/left_hip_pitch_link.STL deleted file mode 100755 index a11933c..0000000 Binary files a/RobotOS1/urdf/meshes/left_hip_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_leg_pitch_link.STL b/RobotOS1/urdf/meshes/left_leg_pitch_link.STL deleted file mode 100755 index 0edcbb9..0000000 Binary files a/RobotOS1/urdf/meshes/left_leg_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_shoulder_link.STL b/RobotOS1/urdf/meshes/left_shoulder_link.STL deleted file mode 100755 index f111585..0000000 Binary files a/RobotOS1/urdf/meshes/left_shoulder_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_wheel1_link.STL b/RobotOS1/urdf/meshes/left_wheel1_link.STL deleted file mode 100755 index 2354012..0000000 Binary files a/RobotOS1/urdf/meshes/left_wheel1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/left_wheel2_link.STL b/RobotOS1/urdf/meshes/left_wheel2_link.STL deleted file mode 100755 index 43387e6..0000000 Binary files a/RobotOS1/urdf/meshes/left_wheel2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_arm1_link.STL b/RobotOS1/urdf/meshes/right_arm1_link.STL deleted file mode 100755 index 9030d2d..0000000 Binary files a/RobotOS1/urdf/meshes/right_arm1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_arm2_link.STL b/RobotOS1/urdf/meshes/right_arm2_link.STL deleted file mode 100755 index bdc6572..0000000 Binary files a/RobotOS1/urdf/meshes/right_arm2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_hip_pitch_link.STL b/RobotOS1/urdf/meshes/right_hip_pitch_link.STL deleted file mode 100755 index 69661bd..0000000 Binary files a/RobotOS1/urdf/meshes/right_hip_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_leg_pitch_link.STL b/RobotOS1/urdf/meshes/right_leg_pitch_link.STL deleted file mode 100755 index 1a24885..0000000 Binary files a/RobotOS1/urdf/meshes/right_leg_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_shoulder_link.STL b/RobotOS1/urdf/meshes/right_shoulder_link.STL deleted file mode 100755 index 7a0dff1..0000000 Binary files a/RobotOS1/urdf/meshes/right_shoulder_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_wheel1_link.STL b/RobotOS1/urdf/meshes/right_wheel1_link.STL deleted file mode 100755 index a2663e9..0000000 Binary files a/RobotOS1/urdf/meshes/right_wheel1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/meshes/right_wheel2_link.STL b/RobotOS1/urdf/meshes/right_wheel2_link.STL deleted file mode 100755 index 2a7b5e5..0000000 Binary files a/RobotOS1/urdf/meshes/right_wheel2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_arm1_link.STL b/RobotOS1/urdf/right_arm1_link.STL deleted file mode 100755 index 9030d2d..0000000 Binary files a/RobotOS1/urdf/right_arm1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_arm2_link.STL b/RobotOS1/urdf/right_arm2_link.STL deleted file mode 100755 index bdc6572..0000000 Binary files a/RobotOS1/urdf/right_arm2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_hip_pitch_link.STL b/RobotOS1/urdf/right_hip_pitch_link.STL deleted file mode 100755 index 69661bd..0000000 Binary files a/RobotOS1/urdf/right_hip_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_leg_pitch_link.STL b/RobotOS1/urdf/right_leg_pitch_link.STL deleted file mode 100755 index 1a24885..0000000 Binary files a/RobotOS1/urdf/right_leg_pitch_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_shoulder_link.STL b/RobotOS1/urdf/right_shoulder_link.STL deleted file mode 100755 index 7a0dff1..0000000 Binary files a/RobotOS1/urdf/right_shoulder_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_wheel1_link.STL b/RobotOS1/urdf/right_wheel1_link.STL deleted file mode 100755 index a2663e9..0000000 Binary files a/RobotOS1/urdf/right_wheel1_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/right_wheel2_link.STL b/RobotOS1/urdf/right_wheel2_link.STL deleted file mode 100755 index 2a7b5e5..0000000 Binary files a/RobotOS1/urdf/right_wheel2_link.STL and /dev/null differ diff --git a/RobotOS1/urdf/robot3.csv b/RobotOS1/urdf/robot3.csv deleted file mode 100755 index fc64ed8..0000000 --- a/RobotOS1/urdf/robot3.csv +++ /dev/null @@ -1,16 +0,0 @@ -Link Name,Center of Mass X,Center of Mass Y,Center of Mass Z,Center of Mass Roll,Center of Mass Pitch,Center of Mass Yaw,Mass,Moment Ixx,Moment Ixy,Moment Ixz,Moment Iyy,Moment Iyz,Moment Izz,Visual X,Visual Y,Visual Z,Visual Roll,Visual Pitch,Visual Yaw,Mesh Filename,Color Red,Color Green,Color Blue,Color Alpha,Collision X,Collision Y,Collision Z,Collision Roll,Collision Pitch,Collision Yaw,Collision Mesh Filename,Material Name,SW Components,Coordinate System,Axis Name,Joint Name,Joint Type,Joint Origin X,Joint Origin Y,Joint Origin Z,Joint Origin Roll,Joint Origin Pitch,Joint Origin Yaw,Parent,Joint Axis X,Joint Axis Y,Joint Axis Z,Limit Effort,Limit Velocity,Limit Lower,Limit Upper,Calibration rising,Calibration falling,Dynamics Damping,Dynamics Friction,Safety Soft Upper,Safety Soft Lower,Safety K Position,Safety K Velocity -base_link,-0.0598891820748674,5.31626531352636E-07,0.164869219254393,0,0,0,7.33969273744462,0.0353291392023482,-2.8945750194243E-08,2.11594095208159E-06,0.0335711592208216,0.000271762665669396,0.00701126241700792,0,0,0,0,0,0,package://robot3/meshes/base_link.STL,0.666666666666667,0.666666666666667,0.666666666666667,1,0,0,0,0,0,0,package://robot3/meshes/base_link.STL,,新上半身另一半-2;肩膀下电机简化-1;支撑板-1;肩膀下电机简化-2;支撑板-2;Angle For Aluminum Profile 3030-3;Angle For Aluminum Profile 3030-5;Angle For Aluminum Profile 3030-1;Angle For Aluminum Profile 3030-4;Sealed-Lead-Acid-12V-1.3Ah-1;电池连接件1-1;Sealed-Lead-Acid-12V-1.3Ah-2;电池连接件1-2;简化轴承座-2;简化轴承座-1;AA简化新上半身-1/新左腰部平台-1;AA简化新上半身-1/新右腰部平台-1;插销推杆-2;定位模块2-2;定位模块-1;六角插销-3;新上半身一半-1;光轴-3;光轴-2;简化轴承座-3;简化轴承座-4;右髋-1/右侧电机座-1;左髋-1/左侧电机座-1,base_link,,,,0,0,0,0,0,0,,0,0,0,,,,,,,,,,,, -left_hip_pitch_link,3.93767161736252E-06,0.161490126813208,0.0158567790568734,0,0,0,0.647526339814874,0.0102648545860372,-2.29409678904373E-06,-2.59558334421073E-08,0.000246501135769241,1.67258066439869E-05,0.010329535938566,0,0,0,0,0,0,package://robot3/meshes/left_hip_pitch_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/left_hip_pitch_link.STL,,简化电机-1;内侧腿-2/右内腿板-1;外侧腿-2/内腿连接法兰B-1,left_hip_pitch,A_left_hip_pitch,left_hip_pitch_joint,revolute,-0.06,-0.1358,-0.037269,-1.5708,-0.0095732,0,base_link,0,0,-1,100,50,-1.57,1.57,,,,,,,, -left_leg_pitch_link,-2.63464180747426E-05,0.197159145100908,0.000498203326348359,0,0,0,0.512633617146925,0.00722923341588236,2.08332581819351E-06,8.43234132073939E-09,0.000184537126972943,-8.42677914064545E-05,0.00733154966415246,0,0,0,0,0,0,package://robot3/meshes/left_leg_pitch_link.STL,1,0.372549019607843,0.294117647058824,1,0,0,0,0,0,0,package://robot3/meshes/left_leg_pitch_link.STL,,外侧腿-2/腿板连接件B-1;外侧腿-2/端盖B-1;外侧腿-2/腿板_外侧1-1,left_leg_pitch,A_left_leg_pitch,left_leg_pitch_joint,revolute,0,0,-0.0295,0,0,0.01205,left_hip_pitch_link,0,0,1,100,50,-1.57,1.57,,,,,,,, -left_wheel2_link,4.1585564079967E-08,-5.47447156262759E-06,0.0187838263233595,0,0,0,0.246221197660763,0.000155862515432955,-7.05176250297316E-11,2.43528481620933E-10,0.000155872043160321,-3.20589554855461E-08,0.000262570842948365,0,0,0,0,0,0,package://robot3/meshes/left_wheel2_link.STL,0.780392156862745,0.780392156862745,0.780392156862745,1,0,0,0,0,0,0,package://robot3/meshes/left_wheel2_link.STL,,外侧腿-2/轮毂电机-1,left_wheel2,A_left_wheel2,left_wheel2_joint,revolute,0,0.4805,0.004,-3.1416,0,-0.0024764,left_leg_pitch_link,0,0,1,100,50,-1000,1000,,,,,,,, -left_wheel1_link,1.97042367054093E-06,5.10773910927798E-06,0.0187838263233595,0,0,0,0.246221197660763,0.000155863750535229,3.20112680897945E-09,1.15389629880907E-08,0.000155870808058046,2.99113400920877E-08,0.000262570842948365,0,0,0,0,0,0,package://robot3/meshes/left_wheel1_link.STL,0.780392156862745,0.780392156862745,0.780392156862745,1,0,0,0,0,0,0,package://robot3/meshes/left_wheel1_link.STL,,内侧腿-2/轮毂电机-1,left_wheel1,A_left_wheel1,left_wheel1_joint,revolute,0,0.48,0.01,0,0,0.0095732,left_hip_pitch_link,0,0,1,100,50,-1000,1000,,,,,,,, -right_hip_pitch_link,-3.97209815898069E-06,-0.161490067811833,0.0158567790568734,0,0,0,0.647526339814875,0.0102648550884178,-2.29438072118385E-06,2.6182761858173E-08,0.000246500633388666,-1.6726195561603E-05,0.010329535938566,0,0,0,0,0,0,package://robot3/meshes/right_hip_pitch_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/right_hip_pitch_link.STL,,简化电机-2;外侧腿-1/内腿连接法兰B-1;内侧腿-1/右内腿板-1,right_hip_pitch,A_right_hip_pitch,right_hip_pitch_joint,revolute,-0.06,0.1358,-0.037269,1.5708,-0.0029091,0,base_link,0,0,-1,100,50,-1.57,1.57,,,,,,,, -right_leg_pitch_link,3.43008600186093E-05,-0.197159143801203,0.000498203308628542,0,0,0,0.512633618713017,0.00722923325218376,2.36753175021739E-06,-1.18316332479498E-08,0.000184537306689484,8.42677920023009E-05,0.00733154968000536,0,0,0,0,0,0,package://robot3/meshes/right_leg_pitch_link.STL,0.647058823529412,0.619607843137255,0.588235294117647,1,0,0,0,0,0,0,package://robot3/meshes/right_leg_pitch_link.STL,,外侧腿-1/端盖B-1;外侧腿-1/腿板连接件B-1;外侧腿-1/腿板_外侧1-1,right_leg_pitch,A_right_leg_pitch,right_leg_pitch_joint,revolute,0,0,-0.0295,0,0,-0.0029091,right_hip_pitch_link,0,0,1,100,50,-1.57,1.57,,,,,,,, -right_wheel2_link,-5.49216228909084E-08,5.47435401360152E-06,0.0187838263233596,0,0,0,0.246221197660763,0.000155862515833067,-9.37269060893747E-11,-3.2162553827427E-10,0.000155872042760209,3.2058267107854E-08,0.000262570842948364,0,0,0,0,0,0,package://robot3/meshes/right_wheel2_link.STL,0.780392156862745,0.780392156862745,0.780392156862745,1,0,0,0,0,0,0,package://robot3/meshes/right_wheel2_link.STL,,外侧腿-1/轮毂电机-1,right_wheel2,A_right_wheel2,right_wheel2_joint,revolute,1.9386E-05,-0.4805,0.004,3.1416,0,0,right_leg_pitch_link,0,0,1,100,50,-1000,1000,,,,,,,, -right_wheel1_link,-1.90651569380871E-06,-5.13193590762073E-06,0.0187838263233596,0,0,0,0.246221197660763,0.000155863671728484,3.11204465575566E-09,-1.11647126229566E-08,0.000155870886864792,-3.00530385317656E-08,0.000262570842948364,0,0,0,0,0,0,package://robot3/meshes/right_wheel1_link.STL,0.780392156862745,0.780392156862745,0.780392156862745,1,0,0,0,0,0,0,package://robot3/meshes/right_wheel1_link.STL,,内侧腿-1/轮毂电机-1,right_wheel1,A_right_wheel1,right_wheel1_joint,revolute,0,-0.48,0.01,0,0,-0.0029091,right_hip_pitch_link,0,0,1,100,50,-1000,1000,,,,,,,, -left_shoulder_link,-0.0144837915216556,0.000108169744531657,0.0209530786562939,0,0,0,0.0131460728071447,6.97527886815648E-06,6.50120079293974E-10,1.71422653747178E-06,7.0623242664372E-06,-1.28024106360931E-08,4.51847500288221E-06,0,0,0,0,0,0,package://robot3/meshes/left_shoulder_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/left_shoulder_link.STL,,肩部上下电机连-2,left_shoulder,A_left_shoulder,left_shoulder_joint,revolute,-0.06,-0.0878,0.36288,0,0,0,base_link,0,0,1,100,50,-1.57,1.57,,,,,,,, -left_arm1_link,-0.00228631297282665,-0.000694770956028379,0.0248681244469774,0,0,0,0.205368959445536,0.000453271756683533,4.86050519285356E-07,1.78313281804853E-06,0.000439236029042774,-2.38826303979722E-06,5.94852101938372E-05,0,0,0,0,0,0,package://robot3/meshes/left_arm1_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/left_arm1_link.STL,,肩膀上电机简化-1;arm1_bendlink-3;3rd(i)-8,left_arm1,A_left_arm1,left_arm1_joint,revolute,0,0,0.0385,1.5708,0,-0.0074682,left_shoulder_link,-1,0,0,42.8,50,-1.5,1.5,,,,,,,, -left_arm2_link,-0.0237485342372672,-0.0546317049801525,1.0877545797372E-05,0,0,0,0.224709252335196,0.000216521591384588,-1.59232055667217E-06,1.95924741151164E-09,4.6574554279622E-05,-8.90668315983443E-08,0.000226443044997353,0,0,0,0,0,0,package://robot3/meshes/left_arm2_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/left_arm2_link.STL,,DC13_X540_DUMMY-3;4th(i)-7;DC13_X540_DUMMY-1;4th(i)-9,left_arm2,A_left_arm2,left_arm2_joint,revolute,0.020127,0.0040341,0.17817,-1.6062,0.0074682,0,left_arm1_link,-0.99997,0.0074634,0.0002647,18,50,-1.5,1.5,,,,,,,, -right_shoulder_link,-0.0144831349305154,-0.000175271563297497,0.0209530786562937,0,0,0,0.0131460728071447,6.97528676044484E-06,-1.0533666096497E-09,1.71414882674561E-06,7.06231637414882E-06,2.07442343132162E-08,4.51847500288222E-06,0,0,0,0,0,0,package://robot3/meshes/right_shoulder_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/right_shoulder_link.STL,,肩部上下电机连-1,right_shoulder,A_right_shoulder,right_shoulder_joint,revolute,-0.06,0.0878,0.36288,0,0,0,base_link,0,0,1,100,50,-1.57,1.57,,,,,,,, -right_arm1_link,-0.00258654183724675,0.00163071193731268,-0.0247948407356193,0,0,0,0.205368959445536,0.000453170582378804,-2.74429063189701E-07,-6.56011918750897E-06,0.000438877289766572,1.19124523787236E-05,5.99451237747681E-05,0,0,0,0,0,0,package://robot3/meshes/right_arm1_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/right_arm1_link.STL,,arm1_bendlink-1;3rd(i)-7;肩膀上电机简化-2,right_arm1,A_right_arm1,right_arm1_joint,revolute,0,0,0.0385,1.5708,0,0,right_shoulder_link,1,0,0,42.8,50,-1.5,1.5,,,,,,,, -right_arm2_link,-0.0240175529876588,0.0558375631647781,2.11385309717427E-06,0,0,0,0.224709252312172,0.000216503168895651,2.38031155628203E-06,5.65361793210531E-11,4.65929763038616E-05,-8.9238704186976E-08,0.000226443045453438,0,0,0,0,0,0,package://robot3/meshes/right_arm2_link.STL,1,1,1,1,0,0,0,0,0,0,package://robot3/meshes/right_arm2_link.STL,,DC13_X540_DUMMY-2;4th(i)-10;4th(i)-8;DC13_X540_DUMMY-4,right_arm2,A_right_arm2,right_arm2_joint,revolute,0.017969,0.0026972,-0.17843,-1.5793,0,0,right_arm1_link,-0.99993,-0.0121,-0.00010316,18,50,-1.5,1.5,,,,,,,, diff --git a/RobotOS1/urdf/robot3.xml b/RobotOS1/urdf/robot3.xml deleted file mode 100755 index 27e4ab4..0000000 --- a/RobotOS1/urdf/robot3.xml +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/RobotOS1/urdf/robot_pitch.py b/RobotOS1/urdf/robot_pitch.py deleted file mode 100755 index 9a49e16..0000000 --- a/RobotOS1/urdf/robot_pitch.py +++ /dev/null @@ -1,108 +0,0 @@ -import mujoco -import mujoco.viewer -import numpy as np -import time - -# 期望的俯仰角度(弧度) -x = 60 # 腿部岔开角度 -a = 90 - (x / 2) -DESIRED_DEGREE = 10 # 输入一个角度,正值为俯,负值为仰 -DESIRED_PITCH = np.radians(DESIRED_DEGREE) * (a / 90) # 转换为弧度并调整比例 - -def main(): - # 加载模型和创建模拟 - model = mujoco.MjModel.from_xml_path("/home/mrji/mujoco_learning/robot3/urdf/robot3.xml") - data = mujoco.MjData(model) - - # 完整重置机器人状态 - mujoco.mj_resetData(model, data) # 确保所有状态完全重置 - - # 初始姿态设置 - 确保设置所有相关关节 - data.qpos[model.joint("left_hip_pitch_joint").id] = 0 - data.qpos[model.joint("right_hip_pitch_joint").id] = 0 - data.qpos[model.joint("left_leg_pitch_joint").id] = 0 - data.qpos[model.joint("right_leg_pitch_joint").id] = 0 - - # 重置所有速度为0 - data.qvel[:] = 0 - - # 修改:在最开始的时候额外重置一次 - mujoco.mj_resetData(model, data) - - # 创建查看器 - with mujoco.viewer.launch_passive(model, data) as viewer: - # 设置摄像头位置 - viewer.cam.azimuth = 180 # 面向机器人正面 - viewer.cam.elevation = -20 # 稍微俯视 - viewer.cam.distance = 2.0 # 距离 - viewer.cam.lookat[:] = [0.0, 0.0, 0.65] # 看向机器人中心 - - # 获取执行器ID - hip_left = model.actuator("1_pos").id - leg_left = model.actuator("2_pos").id - hip_right = model.actuator("3_pos").id - leg_right = model.actuator("4_pos").id - - # 初始化控制信号 - data.ctrl[hip_left] = 0 - data.ctrl[leg_left] = 0 - data.ctrl[hip_right] = 0 - data.ctrl[leg_right] = 0 - - # 状态控制变量 - start_time = time.time() - current_phase = "STABLE" # STABLE, MOVING, DONE - transition_start_time = 0 - transition_duration = 1.0 # 过渡时间为1秒 - current_hip_target = 0 # 当前的目标角度值 - - # 初始稳定步骤 - 让物理引擎稳定 - for _ in range(100): - mujoco.mj_step(model, data) - viewer.sync() - time.sleep(0.001) - - # 模拟循环 - while viewer.is_running(): - step_start = time.time() - elapsed_time = time.time() - start_time - - # 状态机控制 - if current_phase == "STABLE": - # 稳定阶段 - 保持初始姿态1秒 - if elapsed_time >= 1.0: - current_phase = "MOVING" - transition_start_time = time.time() - print("开始向目标角度过渡...") - - elif current_phase == "MOVING": - # 过渡阶段 - 在1秒内平滑过渡到目标角度 - transition_elapsed = time.time() - transition_start_time - if transition_elapsed >= transition_duration: - current_hip_target = DESIRED_PITCH - current_phase = "DONE" - print(f"达到目标俯仰角度: {DESIRED_DEGREE}度") - else: - # 线性插值过渡 - fraction = transition_elapsed / transition_duration - current_hip_target = DESIRED_PITCH * fraction - - # 更新控制信号 - data.ctrl[hip_left] = current_hip_target - data.ctrl[hip_right] = -current_hip_target - data.ctrl[leg_left] = 0 - data.ctrl[leg_right] = 0 - - # 执行物理模拟 - mujoco.mj_step(model, data) - - # 同步查看器 - viewer.sync() - - # 控制步长(约1000Hz) - time_until_next_step = 0.001 - (time.time() - step_start) - if time_until_next_step > 0: - time.sleep(time_until_next_step) - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/RobotOS1/urdf/self_rotation.py b/RobotOS1/urdf/self_rotation.py deleted file mode 100755 index 5b10c81..0000000 --- a/RobotOS1/urdf/self_rotation.py +++ /dev/null @@ -1,133 +0,0 @@ -import mujoco -import numpy as np -import time -from mujoco import viewer - -def main(): - # 加载模型 - model = mujoco.MjModel.from_xml_path('/home/ray/ROS2Workspace/softwaresystem/RobotOS1/urdf/robot3.xml') - data = mujoco.MjData(model) - - # 获取执行器索引 - actuator_names = [ - "left_wheel2_vel", "left_wheel1_vel", - "right_wheel2_vel", "right_wheel1_vel" - ] - actuator_ids = [mujoco.mj_name2id(model, mujoco.mjtObj.mjOBJ_ACTUATOR, name) for name in actuator_names] - - # 设置自转参数 (8秒一圈) - rotation_time = 2.2 # 可调范围5-10秒 - - # 机器人结构参数(需要根据实际模型调整) - effective_wheel_radius = 0.12 # 轮子有效半径(米) - track_width = 0.7 # 左右轮中心距(米) - - # 计算轮子角速度差 - angular_velocity = 2 * np.pi / rotation_time # 机器人旋转角速度(rad/s) - wheel_angular_difference = angular_velocity * track_width / (2 * effective_wheel_radius) - - print(f"目标旋转时间: {rotation_time}秒/圈") - print(f"轮子角速度差: {wheel_angular_difference:.2f} rad/s") - - # 使用内置查看器 - with viewer.launch_passive(model, data) as viewer_handle: - start_time = time.time() - rotation_count = 0 - last_yaw = 0 - last_print_time = start_time - - print("开始模拟...按 Ctrl+C 停止") - - # 设置相机 - viewer_handle.cam.distance = 3.0 - viewer_handle.cam.elevation = -20 - viewer_handle.cam.azimuth = 45 - - # 初始稳定阶段(1秒) - init_stable_time = 0.5 - init_end_time = start_time + init_stable_time - - # 渐进加速参数 - acceleration_duration = 10.0 # 加速时间 - current_speed_factor = 0.0 - max_speed_factor = 1.0 - - # 运行模拟 - while viewer_handle.is_running(): - current_time = time.time() - elapsed_time = current_time - start_time - - # 初始稳定阶段 - if current_time < init_end_time: - # 保持静止,让机器人稳定 - data.ctrl[actuator_ids] = [0, 0, 0, 0] - else: - # 渐进加速 - if current_speed_factor < max_speed_factor: - current_speed_factor = min(max_speed_factor, - (current_time - init_end_time) / acceleration_duration) - - # 应用速度控制 - left_speed = current_speed_factor * wheel_angular_difference - right_speed = -current_speed_factor * wheel_angular_difference - - data.ctrl[actuator_ids[0]] = left_speed # left_wheel2 - data.ctrl[actuator_ids[1]] = left_speed # left_wheel1 - data.ctrl[actuator_ids[2]] = right_speed # right_wheel2 - data.ctrl[actuator_ids[3]] = right_speed # right_wheel1 - - # 步进模拟 - mujoco.mj_step(model, data) - - # 更新查看器 - viewer_handle.sync() - - # 获取机器人方向(使用基座方向) - base_quat = data.qpos[3:7] # 基座的四元数 - roll, pitch, yaw = quaternion_to_euler(base_quat) - - # 检测完整旋转 - if last_yaw > 3.0 and yaw < -3.0: # 从正π到负π - rotation_count += 1 - elif last_yaw < -3.0 and yaw > 3.0: # 从负π到正π - rotation_count += 1 - last_yaw = yaw - - # 每秒显示状态 - if current_time - last_print_time >= 1.0: - if rotation_count > 0: - actual_time_per_rotation = elapsed_time / rotation_count - print(f"目标: {rotation_time:.1f}秒/圈 | 实际: {actual_time_per_rotation:.1f}秒/圈 | 旋转圈数: {rotation_count}") - else: - print(f"旋转中...当前偏航角: {yaw:.2f} rad | 速度因子: {current_speed_factor:.2f}") - last_print_time = current_time - - # 控制模拟速度 - time.sleep(model.opt.timestep) - - print("模拟结束") - -def quaternion_to_euler(q): - """将四元数转换为欧拉角 (roll, pitch, yaw)""" - w, x, y, z = q - # 绕x轴旋转 (roll) - sinr_cosp = 2 * (w * x + y * z) - cosr_cosp = 1 - 2 * (x * x + y * y) - roll = np.arctan2(sinr_cosp, cosr_cosp) - - # 绕y轴旋转 (pitch) - sinp = 2 * (w * y - z * x) - if np.abs(sinp) >= 1: - pitch = np.copysign(np.pi / 2, sinp) - else: - pitch = np.arcsin(sinp) - - # 绕z轴旋转 (yaw) - siny_cosp = 2 * (w * z + x * y) - cosy_cosp = 1 - 2 * (y * y + z * z) - yaw = np.arctan2(siny_cosp, cosy_cosp) - - return roll, pitch, yaw - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/RobotOS1/urdf/self_rotation2.py b/RobotOS1/urdf/self_rotation2.py deleted file mode 100755 index fe8bb97..0000000 --- a/RobotOS1/urdf/self_rotation2.py +++ /dev/null @@ -1,183 +0,0 @@ -import mujoco -import numpy as np -import time -from mujoco import viewer - -def main(): - # 加载模型 - model = mujoco.MjModel.from_xml_path('/home/ray/ROS2Workspace/softwaresystem/RobotOS1/urdf/robot3.xml') - data = mujoco.MjData(model) - - # 获取执行器索引 - actuator_names = [ - "left_wheel2_vel", "left_wheel1_vel", - "right_wheel2_vel", "right_wheel1_vel" - ] - actuator_ids = [mujoco.mj_name2id(model, mujoco.mjtObj.mjOBJ_ACTUATOR, name) for name in actuator_names] - - # 设置自转参数 (8秒一圈) - rotation_time = 10.0 # 可调范围5-10秒 - - # 机器人结构参数(需要根据实际模型调整) - effective_wheel_radius = 0.12 # 轮子有效半径(米) - track_width = 0.7 # 左右轮中心距(米) - - # 计算轮子角速度差 - angular_velocity = 2 * np.pi / rotation_time # 机器人旋转角速度(rad/s) - wheel_angular_difference = angular_velocity * track_width / (2 * effective_wheel_radius) - - print(f"目标旋转时间: {rotation_time}秒/圈") - print(f"轮子角速度差: {wheel_angular_difference:.2f} rad/s") - - # 使用内置查看器 - with viewer.launch_passive(model, data) as viewer_handle: - start_time = time.time() - rotation_count = 0 - last_yaw = 0 - last_print_time = start_time - - print("开始模拟...按 Ctrl+C 停止") - - # 设置相机 - viewer_handle.cam.distance = 3.0 - viewer_handle.cam.elevation = -20 - viewer_handle.cam.azimuth = 45 - - # 初始稳定阶段(1秒) - init_stable_time = 0.5 - init_end_time = start_time + init_stable_time - - # 渐进加速参数 - acceleration_duration = 10.0 # 加速时间 - current_speed_factor = 0.0 - max_speed_factor = 1.0 - - # 运行模拟 - while viewer_handle.is_running(): - current_time = time.time() - elapsed_time = current_time - start_time - - # 初始稳定阶段 - if current_time < init_end_time: - # 保持静止,让机器人稳定 - data.ctrl[actuator_ids] = [0, 0, 0, 0] - else: - # 渐进加速 - if current_speed_factor < max_speed_factor: - current_speed_factor = min(max_speed_factor, - (current_time - init_end_time) / acceleration_duration) - - # 应用速度控制 - left_speed = current_speed_factor * wheel_angular_difference - right_speed = -current_speed_factor * wheel_angular_difference - -# 方法1:预分配固定长度列表 - cur_dq = [0.0] * 4 # [0.0, 0.0, 0.0, 0.0] - des_dq = [0.0] * 4 - tau = [0.0] * 4 - # cur_dq[0] = data.qvel[0]# - # cur_dq[1] = data.qvel[1]#cur_dq[0] = data.qvel[0]# - # cur_dq[2] = data.qvel[2]# - # cur_dq[3] = data.qvel[3]# - # 获取关节在速度向量中的索引 - wheel_joint_names = ["left_wheel2_joint", "left_wheel1_joint", - "right_wheel2_joint", "right_wheel1_joint"] - cur_dq = [ - data.qvel[mujoco.mj_name2id(model, mujoco.mjtObj.mjOBJ_JOINT, name)] - for name in wheel_joint_names - ] - kd = 1 - des_dq[0]= left_speed - - - des_dq[1]= 0.85 * left_speed - des_dq[2]= right_speed - des_dq[3]= 0.85 * right_speed - - - des_dq[0] = -1 - des_dq[1] = -1 - des_dq[2] = -1 - des_dq[3] = 1 - - tau[0] = kd *(des_dq[0]- cur_dq[0]) - tau[1] = kd *(des_dq[1]- cur_dq[1]) - tau[2] = kd *(des_dq[2]- cur_dq[2]) - tau[3] = kd *(des_dq[3]- cur_dq[3]) - - # data.ctrl[actuator_ids[0]] = left_speed # left_wheel2 - # data.ctrl[actuator_ids[1]] = 0.85 * left_speed # left_wheel1 - # data.ctrl[actuator_ids[2]] = right_speed # right_wheel2 - # data.ctrl[actuator_ids[3]] = 0.85 * right_speed # right_wheel1 - - # 获取执行器索引 - actuator_names1 = [ - "left_wheel2_joint_ctrl", "left_wheel1_joint_ctrl", - "right_wheel2_joint_ctrl", "right_wheel1_joint_ctrl" - ] - actuator_ids1 = [ - mujoco.mj_name2id(model, mujoco.mjtObj.mjOBJ_ACTUATOR, name) - for name in actuator_names1 - ] - data.ctrl[actuator_ids1[0]] = tau[0] # left_wheel2 - data.ctrl[actuator_ids1[1]] = tau[1] # left_wheel1 - data.ctrl[actuator_ids1[2]] = tau[2] # right_wheel2 - data.ctrl[actuator_ids1[3]] = tau[3] # right_wheel1 - - # 步进模拟 - mujoco.mj_step(model, data) - - # 更新查看器 - viewer_handle.sync() - - # 获取机器人方向(使用基座方向) - base_quat = data.qpos[3:7] # 基座的四元数 - roll, pitch, yaw = quaternion_to_euler(base_quat) - - # 检测完整旋转 - if last_yaw > 3.0 and yaw < -3.0: # 从正π到负π - rotation_count += 1 - elif last_yaw < -3.0 and yaw > 3.0: # 从负π到正π - rotation_count += 1 - last_yaw = yaw - - # 每秒显示状态 - if current_time - last_print_time >= 1.0: - if rotation_count > 0: - actual_time_per_rotation = elapsed_time / rotation_count - print(f"目标: {rotation_time:.1f}秒/圈 | 实际: {actual_time_per_rotation:.1f}秒/圈 | 旋转圈数: {rotation_count}") - else: - print(f"旋转中...当前偏航角: {yaw:.2f} rad | 速度因子: {current_speed_factor:.2f}") - last_print_time = current_time - - # 控制模拟速度 - time.sleep(0.001) - #time.sleep(model.opt.timestep) - - - print("模拟结束") - -def quaternion_to_euler(q): - """将四元数转换为欧拉角 (roll, pitch, yaw)""" - w, x, y, z = q - # 绕x轴旋转 (roll) - sinr_cosp = 2 * (w * x + y * z) - cosr_cosp = 1 - 2 * (x * x + y * y) - roll = np.arctan2(sinr_cosp, cosr_cosp) - - # 绕y轴旋转 (pitch) - sinp = 2 * (w * y - z * x) - if np.abs(sinp) >= 1: - pitch = np.copysign(np.pi / 2, sinp) - else: - pitch = np.arcsin(sinp) - - # 绕z轴旋转 (yaw) - siny_cosp = 2 * (w * z + x * y) - cosy_cosp = 1 - 2 * (y * y + z * z) - yaw = np.arctan2(siny_cosp, cosy_cosp) - - return roll, pitch, yaw - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/RobotOS1/urdf/test_glfw.py b/RobotOS1/urdf/test_glfw.py deleted file mode 100755 index b0ddbb8..0000000 --- a/RobotOS1/urdf/test_glfw.py +++ /dev/null @@ -1,43 +0,0 @@ -import glfw -import OpenGL.GL as gl - -def main(): - # 初始化 GLFW - if not glfw.init(): - print("GLFW 初始化失败") - return - - print("GLFW 初始化成功") - - # 创建窗口 - window = glfw.create_window(800, 600, "GLFW 窗口测试", None, None) - if not window: - print("无法创建 GLFW 窗口") - glfw.terminate() - return - - print("GLFW 窗口创建成功") - - # 设置当前上下文 - glfw.make_context_current(window) - - # 设置背景颜色 - gl.glClearColor(0.2, 0.3, 0.6, 1.0) # RGBA - 深蓝色 - - # 主循环 - while not glfw.window_should_close(window): - # 清除缓冲区 - gl.glClear(gl.GL_COLOR_BUFFER_BIT) - - # 交换缓冲区 - glfw.swap_buffers(window) - - # 处理事件 - glfw.poll_events() - - # 清理 - glfw.terminate() - print("GLFW 已终止") - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/wiki b/wiki new file mode 100644 index 0000000..6ccfc83 --- /dev/null +++ b/wiki @@ -0,0 +1 @@ +urdf_to_graphiz hive_core_bot0.urdf \ No newline at end of file