Compare commits

...

16 Commits
250426 ... main

Author SHA1 Message Date
1a9e44faeb 删除 report/无人小车进展v2.pptx 2025-09-12 07:28:32 +08:00
cb2f215a38 删除 report/无人小车进展.pptx 2025-09-12 07:28:27 +08:00
ae3dd15920 删除 report/20250821竞速小车阶段进展 - v3.pptx 2025-09-12 07:28:22 +08:00
a274204d4e 删除 report/20250821竞速小车阶段进展 - v2.pptx 2025-09-12 07:28:17 +08:00
dc20002e24 删除 report/20250821竞速小车阶段进展 - v1.pptx 2025-09-12 07:28:10 +08:00
bf62a3af55 上传文件至 report 2025-09-12 07:27:51 +08:00
533a78a343 上传文件至 report 2025-08-14 11:18:26 +08:00
518be17dcb 上传文件至 report 2025-08-13 10:09:12 +08:00
8f3704fcaa 上传文件至 report 2025-08-12 17:28:30 +08:00
6b66965776 添加 下阶段安排(8月) 2025-07-22 15:27:30 +08:00
65634e81bc 上传文件至 / 2025-07-17 16:33:05 +08:00
2d04aff707 无人小车进展v2
无人小车进展v2
2025-05-27 19:41:54 +08:00
be917b38b5 202505汇报
阶段进度汇报
2025-05-19 20:09:45 +08:00
4e2a7c4086 更新 README.md 2025-05-19 16:31:48 +08:00
7917afd456 sim_pure
纯跟踪仿真程序
2025-04-28 09:57:34 +08:00
a09b4c1ad0 添加 cmake 2025-04-26 11:04:15 +08:00
7 changed files with 93 additions and 0 deletions

View File

@ -1,2 +1,21 @@
# TX2
roscore
source devel/setup.bash
roslaunch position lqr.launch
roslaunch position pure.launch
roslaunch position mpc.launch
TAG 4 1 3 2
rqt_graph
lsusb
sudo chmod 666 /dev/bus/usb/001/004
sudo apt-get install ros-noetic-serial

69
cmake Normal file
View File

@ -0,0 +1,69 @@
# toplevel CMakeLists.txt for a catkin workspace
# catkin/cmake/toplevel.cmake
cmake_minimum_required(VERSION 3.0.2)
project(Project)
set(CATKIN_TOPLEVEL TRUE)
# search for catkin within the workspace
set(_cmd "catkin_find_pkg" "catkin" "${CMAKE_SOURCE_DIR}")
execute_process(COMMAND ${_cmd}
RESULT_VARIABLE _res
OUTPUT_VARIABLE _out
ERROR_VARIABLE _err
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_STRIP_TRAILING_WHITESPACE
)
if(NOT _res EQUAL 0 AND NOT _res EQUAL 2)
# searching fot catkin resulted in an error
string(REPLACE ";" " " _cmd_str "${_cmd}")
message(FATAL_ERROR "Search for 'catkin' in workspace failed (${_cmd_str}): ${_err}")
endif()
# include catkin from workspace or via find_package()
if(_res EQUAL 0)
set(catkin_EXTRAS_DIR "${CMAKE_SOURCE_DIR}/${_out}/cmake")
# include all.cmake without add_subdirectory to let it operate in same scope
include(${catkin_EXTRAS_DIR}/all.cmake NO_POLICY_SCOPE)
add_subdirectory("${_out}")
else()
# use either CMAKE_PREFIX_PATH explicitly passed to CMake as a command line argument
# or CMAKE_PREFIX_PATH from the environment
if(NOT DEFINED CMAKE_PREFIX_PATH)
if(NOT "$ENV{CMAKE_PREFIX_PATH}" STREQUAL "")
if(NOT WIN32)
string(REPLACE ":" ";" CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH})
else()
set(CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH})
endif()
endif()
endif()
# list of catkin workspaces
set(catkin_search_path "")
foreach(path ${CMAKE_PREFIX_PATH})
if(EXISTS "${path}/.catkin")
list(FIND catkin_search_path ${path} _index)
if(_index EQUAL -1)
list(APPEND catkin_search_path ${path})
endif()
endif()
endforeach()
# search for catkin in all workspaces
set(CATKIN_TOPLEVEL_FIND_PACKAGE TRUE)
find_package(catkin QUIET
NO_POLICY_SCOPE
PATHS ${catkin_search_path}
NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
unset(CATKIN_TOPLEVEL_FIND_PACKAGE)
if(NOT catkin_FOUND)
message(FATAL_ERROR "find_package(catkin) failed. catkin was neither found in the workspace nor in the CMAKE_PREFIX_PATH. One reason may be that no ROS setup.sh was sourced before.")
endif()
endif()
catkin_workspace()

Binary file not shown.

View File

@ -0,0 +1,5 @@
ROS转ROS2
修改标定映射方式,根据实时测量结果增大油门或降低油门
将手柄修改为多档可调
尝试重新恢复C板功能
尝试将定位模块改为惯导与UWB融合

BIN
亚克力板.dwg Normal file

Binary file not shown.

BIN
亚克力板.pdf Normal file

Binary file not shown.