forked from CMU-Robotics-Club/RoboBuggy2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into buggy-vision
- Loading branch information
Showing
46 changed files
with
3,009 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# NOTE: this file is not being used in docker compose correctly | ||
# SET ALL ENVIRONMENT VARIABLES IN THE YAML | ||
GPS_PORT=/dev/null | ||
WEBCAM_PORT=/dev/null | ||
RLSENSE_PORT=/dev/null | ||
TEENSY_PORT=/dev/null | ||
FEATHER_PORT=/dev/null | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
.DS_Store | ||
rb_ws/bags | ||
.docker-compose.yml.un~ | ||
.python-requirements.txt.un~ | ||
docker-compose.yml~ | ||
*TEMP_DO_NOT_EDIT.txt | ||
rb_ws/src/buggy/bags/* | ||
|
||
# BAGS | ||
rb_ws/bags | ||
rb_ws/src/buggy/bags/ | ||
*.bag | ||
vision/data/* | ||
.vision/* | ||
runs/* | ||
.sc/ | ||
rb_ws/rosbag2*/ | ||
|
||
# VISION | ||
.vision/ | ||
vision/data/ | ||
|
||
#VENV | ||
.sc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
matplotlib | ||
NavPy | ||
numba | ||
numpy | ||
numpy<2 | ||
osqp | ||
pandas | ||
pymap3d | ||
pyproj | ||
pyserial | ||
scipy | ||
setuptools==58.2.0 | ||
trimesh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
export RBROOT=/rb_ws | ||
export PYTHONPATH=$PYTHONPATH:$RBROOT/src/buggy/scripts | ||
export TRAJPATH=$RBROOT/src/buggy/paths/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
export RBROOT=/home/nuc/robobuggy-software/rb_ws | ||
export PYTHONPATH=$PYTHONPATH:$RBROOT/src/buggy/scripts | ||
export TRAJPATH=$RBROOT/src/buggy/paths/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(buggy) | ||
|
||
# Default to C++14 | ||
if(NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 14) | ||
endif() | ||
|
||
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(ament_cmake_python REQUIRED) | ||
find_package(rclcpp REQUIRED) | ||
find_package(rclpy REQUIRED) | ||
|
||
# Install Launch Files | ||
install(DIRECTORY | ||
launch | ||
DESTINATION share/${PROJECT_NAME} | ||
) | ||
|
||
# Install Python modules | ||
# ament_python_install_package(${PROJECT_NAME}) | ||
|
||
# Install Python executables | ||
install(PROGRAMS | ||
scripts/hello_world.py | ||
scripts/controller/controller_node.py | ||
scripts/path_planner/path_planner.py | ||
scripts/simulator/engine.py | ||
scripts/watchdog/watchdog_node.py | ||
scripts/buggy_state_converter.py | ||
scripts/serial/ros_to_bnyahaj.py | ||
scripts/telemetry/telematics.py | ||
scripts/debug/debug_steer.py | ||
DESTINATION lib/${PROJECT_NAME} | ||
) | ||
|
||
|
||
find_package(rosidl_default_generators REQUIRED) | ||
|
||
rosidl_generate_interfaces(${PROJECT_NAME} | ||
"msg/TrajectoryMsg.msg" | ||
"msg/SCDebugInfoMsg.msg" | ||
"msg/SCSensorMsg.msg" | ||
"msg/NANDRawGPSMsg.msg" | ||
"msg/NANDDebugInfoMsg.msg" | ||
) | ||
ament_export_dependencies(rosidl_default_runtime) | ||
|
||
ament_package() |
Oops, something went wrong.