Skip to content

Commit

Permalink
vsomeip 3.1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzbichler committed Dec 14, 2020
1 parent 0f51130 commit 13f9c89
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changes
=======

v3.1.20.3
- Correct detection payload changes (Issue #164)

v3.1.20.2
- Removed special way of detecting boost within NDK (PR #187)
- Allow events/eventgroups to be specified in arbitrary order (Issue #68)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set (VSOMEIP_COMPAT_NAME vsomeip)
set (VSOMEIP_MAJOR_VERSION 3)
set (VSOMEIP_MINOR_VERSION 1)
set (VSOMEIP_PATCH_VERSION 20)
set (VSOMEIP_HOTFIX_VERSION 2)
set (VSOMEIP_HOTFIX_VERSION 3)

set (VSOMEIP_VERSION ${VSOMEIP_MAJOR_VERSION}.${VSOMEIP_MINOR_VERSION}.${VSOMEIP_PATCH_VERSION})
set (PACKAGE_VERSION ${VSOMEIP_VERSION}) # Used in documentation/doxygen.in
Expand Down
5 changes: 4 additions & 1 deletion implementation/routing/src/routing_manager_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,10 @@ void routing_manager_base::register_event(client_t _client,
// Check whether all additional bytes (if any) are excluded
for (length_t i = its_min_length; i < its_max_length; i++) {
auto j = its_debounce->ignore_.find(i);
if (j == its_debounce->ignore_.end() && j->second == 0xFF) {
// A change is detected when an additional byte is not
// excluded at all or if its exclusion does not cover
// all its bits.
if (j == its_debounce->ignore_.end() || j->second != 0xFF) {
is_changed = true;
break;
}
Expand Down

0 comments on commit 13f9c89

Please sign in to comment.