File tree 12 files changed +23
-161
lines changed
12 files changed +23
-161
lines changed Original file line number Diff line number Diff line change 3
3
* .swp
4
4
5
5
# # VSCode and Python
6
+ * .vscode
6
7
.DS_Store
7
8
.huskyrc.json
8
9
out
Original file line number Diff line number Diff line change 2
2
Changelog for package ifm3d-ros
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
- 1.1 (unreleased)
6
- ===============
5
+ 1.1
6
+ ===
7
7
8
- 1.1.0
8
+ 1.1.2
9
+ -----
10
+ * Update Dockerfiles for building the ROS node inside a Docker software container environment: removed glog build and runtime libs
11
+
12
+ 1.1.1
9
13
-----
10
14
* Update camera nodelet for ifm3d >= v1.2.3
11
15
* Switch from looped image retrieval to callback based image retrieval
@@ -34,6 +38,11 @@ Changelog for package ifm3d-ros
34
38
* Robustness improvements:
35
39
* Only publish data to image streams if API frames include the corresponding image data
36
40
41
+
42
+ 1.1.0
43
+ -----
44
+ * UNRELEASED
45
+
37
46
1.0
38
47
===
39
48
Original file line number Diff line number Diff line change 11
11
12
12
| ** ifm3d-ros version** | ** ifm3d version** | ** embedded O3R FW version** | ** ROS distribution(s)** |
13
13
| --------------------- | ----------------- | --------------------------- | ----------------------- |
14
+ | 1.1.2 | 1.3.3 | 1.0.14 | ROS Noetic |
14
15
| 1.1.1 | 1.2.6 | 1.0.14 | ROS Noetic |
15
16
| 1.1.0 (unreleased) | 1.2.3 | 1.0.x | ROS Noetic |
16
17
| 1.0.1 | 0.93.0 | 0.14.23 | ROS Noetic |
@@ -22,6 +23,7 @@ Please see the internal subpackage version structure for a known `ifm3d-ros vers
22
23
23
24
| ** ifm3d-ros version** | ** ifm3d_ros_driver** | ** ifm3d_ros_msgs** | ** ifm3d_ros_examples** |
24
25
| --------------------- | -------------------- | ------------------ | ---------------------- |
26
+ | 1.1.2 | 1.1.1 | 0.2.0 | 0.2.0 |
25
27
| 1.1.1 | 1.1.1 | 0.2.0 | 0.2.0 |
26
28
| 1.1.0 (unreleased) | 1.1.0 | 0.2.0 | 0.2.0 |
27
29
| 1.0.1 | 1.0.1 | 0.1.0 | 0.1.0 |
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ RUN apt-get update && apt-get install -y \
28
28
cmake \
29
29
wget \
30
30
libssl-dev \
31
- libgoogle-glog-dev \
32
- libgoogle-glog0v5 \
33
31
python3-rosdep
34
32
35
33
# Install ifm3d using the deb files
@@ -69,8 +67,6 @@ RUN apt-get update \
69
67
locales \
70
68
sudo \
71
69
libssl-dev \
72
- libgoogle-glog0v5 \
73
- libboost-all-dev \
74
70
python3-rosdep \
75
71
&& rm -rf /var/lib/apt/lists/*
76
72
@@ -92,5 +88,3 @@ RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
92
88
ENV LANG en_US.UTF-8
93
89
ENV LANGUAGE en_US:en
94
90
ENV LC_ALL en_US.UTF-8
95
-
96
- # NOTE: Make sure to run export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ RUN apt-get update && apt-get install -y \
25
25
libxmlrpc-c++8-dev \
26
26
libproj-dev \
27
27
libcurl4 \
28
- libgoogle-glog-dev \
29
- libgoogle-glog0v5 \
30
28
build-essential \
31
29
coreutils \
32
30
cmake \
Original file line number Diff line number Diff line change @@ -6,21 +6,21 @@ set -euo pipefail
6
6
# #############
7
7
ARCH=" amd64"
8
8
BASE_IMAGE=" amd64/ros"
9
- TAG=ifm3d-ros_126 :noetic-amd64_1.1.1
9
+ TAG=ifm3d-ros_133 :noetic-amd64_1.1.2
10
10
11
11
# #############
12
12
# For ARM64V8:
13
13
# #############
14
14
# ARCH="arm64v8"
15
15
# BASE_IMAGE="arm64v8/ros"
16
- # TAG=ifm3d-ros_126 :noetic-arm64_v8_1.1.1
16
+ # TAG=ifm3d-ros_133 :noetic-arm64_v8_1.1.2
17
17
18
18
# #############
19
19
# Arguments common for both architecture
20
20
# #############
21
21
BUILD_IMAGE_TAG=" noetic"
22
22
FINAL_IMAGE_TAG=" noetic-ros-core"
23
- IFM3D_VERSION=" 1.2.6 "
23
+ IFM3D_VERSION=" 1.3.3 "
24
24
IFM3D_ROS_REPO=" https://github.com/ifm/ifm3d-ros"
25
25
IFM3D_ROS_BRANCH=" dev1.2"
26
26
UBUNTU_VERSION=" 20.04"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ services:
3
3
4
4
ifm3d_ros :
5
5
tty : true
6
- image : ifm3d-ros_126 :noetic-amd64_1.1.1
6
+ image : ifm3d-ros_133 :noetic-amd64_1.1.2
7
7
restart : unless-stopped
8
8
volumes :
9
9
- ./hosts_IPC:/etc/hosts/
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "2.3"
2
2
services :
3
3
ifm3d_ros :
4
4
tty : true
5
- image : ifm3d-ros_126 :noetic-arm64_v8_1.1.1
5
+ image : ifm3d-ros_133 :noetic-arm64_v8_1.1.2
6
6
7
7
restart : unless-stopped
8
8
volumes :
@@ -22,8 +22,6 @@ services:
22
22
. /opt/ros/noetic/setup.sh;
23
23
. /home/ifm/catkin_ws/devel/setup.sh;
24
24
export IFM3D_IP="127.0.0.1";
25
- export GLOG_logtostderr=1;
26
- export GLOG_minloglevel=3;
27
25
export ROS_MASTER_URI=http://ifm3d_rosmaster:11311;
28
26
export ROS_HOSTNAME=ifm3d_ros;
29
27
echo ROOS_MASTER_URI=$$ROS_MASTER_URI;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "2.3"
2
2
services :
3
3
ifm3d_ros :
4
4
tty : true
5
- image : ifm3d-ros_126 :noetic-arm64_v8_1.1.1
5
+ image : ifm3d-ros_133 :noetic-arm64_v8_1.1.2
6
6
7
7
extra_hosts :
8
8
- " dockerhost:172.20.0.1"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
<package format =" 2" >
3
3
4
4
<name >ifm3d-ros</name >
5
- <version >1.1.1 </version >
5
+ <version >1.1.2 </version >
6
6
<description >metapackage for the ifm3d-ros package group which interacts with the ifm 3D ToF Camera ROS package</description >
7
7
<
maintainer email =
" [email protected] " >ifm robotics group</
maintainer >
8
8
<license >Apache 2</license >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set(CMAKE_CXX_STANDARD 17)
5
5
set (CMAKE_CXX_STANDARD_REQUIRED ON )
6
6
set (CMAKE_CXX_EXTENSIONS OFF )
7
7
8
- find_package (ifm3d 1.2.6 REQUIRED COMPONENTS
8
+ find_package (ifm3d 1.3.3 REQUIRED COMPONENTS
9
9
device
10
10
framegrabber
11
11
)
You can’t perform that action at this time.
0 commit comments