File tree Expand file tree Collapse file tree 2 files changed +73
-0
lines changed
Expand file tree Collapse file tree 2 files changed +73
-0
lines changed Original file line number Diff line number Diff line change 44
55## Ignition Msgs 8.x
66
7+ ### Ignition Msgs 8.4.0 (2022-04-06)
8+
9+ 1 . Add Dataframe msg
10+ * [ Pull request #238 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/238 )
11+
12+ ### Ignition Msgs 8.3.0 (2022-03-24)
13+
14+ 1 . Focal CI: static checkers and doxygen linters
15+ * [ Pull request #230 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/230 )
16+
17+ 1 . Pose, twist and odometry with covariance msgs
18+ * [ Pull request #224 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/224 )
19+
20+ 1 . Add wheel slip message definition
21+ * [ Pull request #205 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/205 )
22+ * [ Pull request #227 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/227 )
23+
24+ 1 . Add Ubuntu Jammy CI
25+ * [ Pull request #225 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/225 )
26+
27+ 1 . Add PointCloudPacked iterators
28+ * [ Pull request #210 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/210 )
29+ * [ Pull request #218 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/218 )
30+
31+ 1 . Document pose + spherical coordinates combination on spawn
32+ * [ Pull request #212 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/212 )
33+
34+ 1 . Utility_TEST: adjust expectations for 32-bit arch (#120 )
35+ * [ Pull request #120 ) (#196 ] ( https://github.com/ignitionrobotics/ign-msgs/pull/120 ) (#196 )
36+
737### Ignition Msgs 8.2.0 (2021-12-14)
838
9391 . Add NavSat messages
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (C) 2022 Open Source Robotics Foundation
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ *
16+ */
17+
18+ syntax = "proto3" ;
19+ package ignition.msgs ;
20+ option java_package = "com.ignition.msgs" ;
21+ option java_outer_classname = "DataframeProtos" ;
22+
23+ /// \ingroup ignition.msgs
24+ /// \interface Dataframe
25+ /// \brief A message containing some payload and who are the sender and
26+ /// destination.
27+
28+ import "ignition/msgs/header.proto" ;
29+
30+ message Dataframe
31+ {
32+ /// \brief Header data.
33+ Header header = 1 ;
34+
35+ /// \brief Address of the sender.
36+ string src_address = 2 ;
37+
38+ /// \brief Address of the destination.
39+ string dst_address = 3 ;
40+
41+ /// \brief Payload.
42+ bytes data = 4 ;
43+ }
You can’t perform that action at this time.
0 commit comments