Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKongelf committed Oct 19, 2023
2 parents f457be9 + 4db57fc commit 65a881a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .github/pull_request_template.md

This file was deleted.

1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ SHELL ["/bin/bash", "-c"]
RUN source /opt/ros/$ROS_DISTRO/setup.bash \
&& colcon build \
--symlink-install \
-executor sequential \
--cmake-args \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="-Wno-deprecated-declarations"
Expand Down
14 changes: 9 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
version: '3.8'

# lidar hostname: os1-122007000043

services:
freya-lidar:
# os1-122007000043
container_name: ouster-lidar-freya
image: ghcr.io/vortexntnu/ouster-lidar-ros2-driver-humble:2023-10-09
ports:
- 7502:7502/udp # lidar output port
- 7503:7503/udp # imu output port
entrypoint: ["bash", "-c", "set -e \
&& source ./install/setup.bash \
&& ros2 launch ouster_ros sensor.launch.xml \
sensor_hostname:=169.254.154.82 \
lidar_port:=7502 \
imu_port:=7503 \
viz:=false
", "ros-entrypoint"]
# ^Change to freya static-ip

test-lidar:
container_name: ouster-lidar-test
image: ghcr.io/vortexntnu/ouster-lidar-ros2-driver-humble:2023-10-09
ports:
- 7503:7503/udp # lidar output port
- 7502:7502/udp # lidar output port
- 7503:7503/udp # imu output port
entrypoint: ["bash", "-c", "set -e \
&& source ./install/setup.bash \
&& ros2 launch ouster_ros sensor.launch.xml \
sensor_hostname:=10.0.0.122 \
lidar_port:=7503 \
lidar_port:=7502 \
imu_port:=7503 \
viz:=false
", "ros-entrypoint"]
", "ros-entrypoint"]

0 comments on commit 65a881a

Please sign in to comment.